好吧这道题我丢脸了,竟然做错了。
如下程序的输出结果是:
class Alligator{
public static void main(String[] args){
int[]x[] = {{1,2},{3,4,5},{6,7,8,9}};
int[][]y = x;
System.out.print(y[2][1]);
}
}
最后输出7。
我是从1开始数的。
2024-03-24 11:28:46
好吧这道题我丢脸了,竟然做错了。
如下程序的输出结果是:
class Alligator{
public static void main(String[] args){
int[]x[] = {{1,2},{3,4,5},{6,7,8,9}};
int[][]y = x;
System.out.print(y[2][1]);
}
}
最后输出7。
我是从1开始数的。