欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

二维数组的初始化和遍历?

程序员文章站 2022-03-21 22:16:28
...

一、        数组的初始化

    String[][] str = new String[5][];

    int[][] scores = new int[][] { { 90, 85, 54 }, { 76, 80 },{ 87 } };

    int[][]scores = { { 90, 85, 54 },{ 76, 80 },{ 87 } };


一、    

Public class Case5 { // 二维数组的遍历
	Public static void main(String[] args) {
	int[][] scores = new int[][] { { 90, 78, 54 }, { 76 , 80 }, { 87 } };
	for (inti = 0; i<scores.length; i++) { //外层数组长度
	for (intj = 0; j<scores[i].length; j++) {//内层数组长度
	System.out.println(scores[i][j]);
	            }
	        }
	    }
	}