扫码下载编程狮APP
W3Cschool
恭喜您成为首批注册用户
获得88经验值奖励
数组 1.声明数组:
int[][] array = new int[2][3]; //或者: int[][] array = new int[2][]; array[0] = new int [3]; array[1] = new int [2];
2.声明并初始化数组:
int array[][] = { { 1, 2, 3 }, { 4, 5} };
3.使用数组:
System.out.println(array[0][1]);
更多建议:
扫描二维码
下载编程狮App
编程狮公众号
联系方式:
更多建议: