请输出0 1 2 3
1 2 3 4
2 3 4 5
3 4 5 6
我变得程序如下,编译通过了,就是运行通不过,请告诉看看什么原因
class shuzu1
{
public static void main(String args[])
{
int a[][]=new int[4][4];
int i,j;
for(i=0;i<4;i++)
{
for(j=0;j<4;j++)
{
a[j]=i+j;
}
System.out.println(a[j]);
}
System.out.println("\n");
}
}问题补充:
运行出现这个 Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 4
at shuzu1.main(shuzu1.java:13) |
|