Advertisement
Guest User

Untitled

a guest
Feb 24th, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. while(pcTurn==true){
  2. pcx=rand.nextInt(3);
  3. pcy=rand.nextInt(3);
  4. System.out.println(pcy+" "+pcx);
  5. if(board[pcy][pcx]!='X'){
  6. board[pcy][pcx]='O';
  7. pcTurn=false;
  8. }
  9.  
  10. }
  11. boardSelection("1",board);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement