public void extend2dArray(int tmpMulti){ //tmpMulti 배수 int [][] data = { {1,2,3}, {4,5,6}, {7,8,9}, {10,11,12} }; int col = 3; // 복사할 배열의 col 수 int row = 4; // 복사할 배열의 row 수 // 결과 배열. int [][] resultArray = new int[4*tmpMulti][3*tmpMulti]; for ( int j = 0 ; j < col ;j++){ int tmpj = j*tmpMulti; for (int k = 0 ; k < row ; k++){ int tmp = k*tmpMulti; // 4배수로 작성됨 // 다른 배수일 경우 수정필요 resultArray[tmpj]..