public class ArrayTest2 {//2차원배열 array
  public static void main(String[] args){
    int test[][]; //2차원 배열 선언
    test = new int[2][3]; //2차원 배열생성
          //행    열 (개념)
    //2차원 배열 초기화
    test[0][0] = 100;
    test[0][1] = 200;
    test[0][2] = 300;
    
    test[1][0] = 400;
    test[1][1] = 500;
    test[1][2] = 600;
    
    //2차원 배열 내용 사용
    for(int i=0; i<test.length; i++){
      for(int j=0; j<test[i].length; j++){
        System.out.println("test["+i+"]["+j+"] : "+test[i][j]);
      }
    }
    
  }
}

+ Recent posts