< day0909 – arrays2 – Arr2Test02 >

package arrays2;

public class Arr2Test02 {

	public static void main(String[] args) {
		
		
		// 초기화 리스트 방법으로 선언 
		int arr[][] = new int[][] {
			{1, 2, 3},
			{4, 5, 6},
			{7, 8, 9}
		};
		
		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();
		}

	}

}

@ 설명

< day0909 – arrays2 – Arr2Test03 >

package arrays2;

public class Arr2Test03 {

	public static void main(String[] args) {
		
		int arr[][] = new int[3][3]; 
		/* 0으로 초기화 : {0, 0, 0}
					  			    {0, 0, 0}
											{0, 0, 0} */
	
		int count = 1;
		
		for(int i = 0; i < arr.length; i++) {
			for(int j = 0; j < arr[i].length; j++) {
				arr[i][j] = count++; // 후위 1 증가 연산자
				System.out.print(arr[i][j]+" ");
			}
			System.out.println();
		}
		
	}

}

@ 설명