题目是这样的 定义一个2x3的数组 使数组中德每个元素值为两个下标之积
这是我的程序不知道为什么解不出来
public class abc { /**
 * @param args
 * @throws IOException 
 */
public static void main(String arg[]){
int a[][]=new int[2][3];
int i=0,j=0;
for (i=0;i<=2;i++){
for(j=0;j<=3;j++)
a[i][j]=j*i;
}
System.out.println("a["+i+"]["+j+"]="+a[i][j]+"\t");
}