Guest User

Untitled

a guest
May 26th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.18 KB | None | 0 0
  1.     public void displayBoard(){
  2.         for (int i=0;i<boardDim;i++){
  3.             System.out.println();
  4.             for (int j=0;j<boardDim;j++){
  5.                 System.out.printf(" %s", theBoard[i][j]);
  6.             }
  7.            
  8.         }
  9.     }
Add Comment
Please, Sign In to add comment