创建二维数组的语法。考虑:int[][] multD = new int[5][];multD[0] = new int[10];这就是如何创建一个5行10列的二维数组吗?我在网上看到了这段代码,但是语法没有意义。
3 回答
哔哔one
TA贡献1854条经验 获得超8个赞
int[][] multi = new int[5][10];
int[][] multi = new int[5][];multi[0] = new int[10];multi[1] = new int[10];multi[2] = new int[10];multi[3] = new int[10];multi[4] = new int[10];
int
, 0
int[][] multi = new int[][]{ { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }};
函数式编程
TA贡献1807条经验 获得超9个赞
int marks[][]={{50,60,55,67,70},{62,65,70,70,81},{72,66,77,80,69}};
marks[0][0] marks[0][1] marks[0][2] marks[0][3] marks[0][4]marks[1][0] marks[1][1] marks[1][2] marks[1][3] marks[1][4]marks[2][0] marks[2][1] marks[2][2] marks[2][3] marks[2][4]
int marks[][]; // declare marks arraymarks = new int[3][5]; // allocate memory for storing 15 elements
int marks[][] = new int[3][5];
杨魅力
TA贡献1811条经验 获得超6个赞
int array[][] = new int[3][];array[0] = new int[3];array[1] = new int[2];array[2] = new int[5];
添加回答
举报
0/150
提交
取消