I want to number the row and column . I get row number right around the left hand side ..I want the column number on the top..This is the code I have ..CAN PLLZZ HELP ME WID the column number plzz..
int[][] Board = new int[15][15];
for(int j=0;j<Board.length;j++)
System.out.print(" "+j+" ");
for (int r = 0; r < Board.length; r++) {
System.out.print("\n"+r);
for (int c = 0; c < Board[r].length; c++) {
System.out.print("__" + " ");
}
System.out.println();
}