how you number the 2d array??i created a 2d array now i want to number the rouws and colums...here is the code i have now
int[][] Board = new int[15][15];
for (int r = 0; r < Board.length; r++) {
for (int c = 0; c < Board.length; c++) {
System.out.print(" " + "_" + " ");
}
System.out.println();
}
So i want to number this array