文章列表
如果在笔试(无法上机操作)的情况下,遇到这3道笔试题,大家有把握能做对几道
第一题:
public static void main(String[] args) throws Exception {
int[] x = new int[6];
Arrays.fill(x, 1);
for (int i = 0; i < x.length; i++) {
System.in.read();
System.out.println(x[i]);
}
}这段代码,输入“1”(不含引号),按回车后,系统输出什么?
第二题:
private sta ...