二维数组
Posted cloudli
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了二维数组相关的知识,希望对你有一定的参考价值。
一. 二维数组遍历
package test_1;
public class test_7 {
public static void main(String[] args) {
int[][] arr = {{1,2,3},{5,6},{12,13,14}};
for(int i=0; i< arr.length ; i++) {
for(int j=0; j < arr[i].length ; j++){
System.out.print(arr[i][j] +" ");
}
System.out.println("");
}
}
}
二. 二维数组求和
package test_1;
public class test_8 {
public static void main(String[] args) {
int[][] arr = {{33,44,55},{77,55,33},{33,55,77},{99,88,77}};
int sum =0;
for(int i=0; i< arr.length ; i++) {
for(int j=0; j < arr[i].length ; j++){
sum =sum +arr[i][j];
}
}System.out.println(sum);
}
}
以上是关于二维数组的主要内容,如果未能解决你的问题,请参考以下文章