Time To Code: Task IV
Now, let’s build on our project and implement the rest of the game.
We'll cover the following...
Task IV: Make the user’s move
Once we have the layout of our game, we need to start playing. We’ll take the players’ moves as input and then update the board accordingly.
Note: We’ll use
java.util.Scanner
to take the user’s input, but you don’t need ...