I\'m having a problem with two dimensional array. I\'m having a display like this:
1 2 3 4 5 6 7 9 10 11 12 13 14 15 16 . . . etc
What basi
You could write a method to print a 2d array like this:
//Displays a 2d array in the console, one line per row. static void printMatrix(int[][] grid) { for(int r=0; r