class Array2d
{
public static void main(String[] args)
{
int[][] twoD = new int[4][];
twoD[0] = new int[4];
twoD[1] = new int[5];
twoD[2] = new int[6];
twoD[3] = new int[7];
for(int i=0;i<twoD.length;i++)
{ for(int j=0;j<twoD[0].length;j++)
System.out.print(twoD[i][j]+" ");
System.out.print("\r");}
}
}
按说应该打印出一个零值的非矩形布局,我这里到底是哪里做错了,请教一下。
改了之后怎么只打出了最后一排的值,前面的都没有。谢谢。