int [] tablica = new int[3][2] for(int i =0 ;i <3 ; i++) { for (int j=0 ; j<2; j++) { System.out.print(tablic[i][j]); } System.out.println(); }