import java.util.Arrays; class P14_TwoD_Array { public static void main(String[] args) { int[][] table = new int[5][10]; table[3][5]=1234; // set 4th row, 5th column to 1234 for (int[] arr1D: table) System.out.println(Arrays.toString(arr1D)); //System.out.println(Arrays.toString(table)); } }