Question: Java Sample/example : Create a Tic-Tac-Toe game for two players. The game will take in a location on the game board (1-9) and place the
Create a Tic-Tac-Toe game for two players. The game will take in a location on the game board (1-9) and place the player's mark ("X" or"O") onto the board on the requested location. It is suggested that you use a 2-dimensional String array to store your board. It should have 3 rows and 3 columns. You should only need to use one board in your game. The game should print out current layout of the board before we request a location from the currently player. If neither player has selected a location, we should print out a number the player can use to select that location. If a player has selected a location, we should print out that player's mark As we play the game, we should determine whether or not the user has successfully won the game by checking to see if we have three of the same mark in a row in 8 different directions. An example Java file has been provided to help with breaking up the problem into different methods. Reference: https://en wikipedia.org/wiki/Tic-tac-toe
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
