Question: In a game of tic-tac-toe, two players take turns marking an available cell in a 3 ? 3 grid with their respective tokens (either X
In a game of tic-tac-toe, two players take turns marking an available cell in a 3 ? 3 grid with their respective tokens (either X or O). When one player has placed three tokens in a horizontal, vertical, or diagonal row on the grid, the game is over and that player has won. A draw (no winner) occurs when all the cells on the grid have been filled with tokens and neither player has achieved a win. Create a program for playing tic-tac-toe.The program prompts two players to enter an X token and O token alternately. Whenever a token is entered, the program redisplays the board on the console and determines the status of the game (win, draw, or continue). Here is a sample run:

| | | Enter a row (0, 1, or 2) for player X: 1 -Enter Enter a column (0, 1, or 2) for player X: 1 -Enter | X | | Enter a row (0, 1, or 2) for player 0: 1 -Enter Enter a column (0, 1, or 2) for player 0: 2 Enter | | X | 0 | | Enter a row (0, 1, or 2) for player X: | X| | |0|X | 0 | X player won
Step by Step Solution
3.41 Rating (164 Votes )
There are 3 Steps involved in it
Java program for playing a TicTacToe game Compile TTTpvpjava Run TTTpvp import javautilScanner this is tictactoe player vs playes game class TTTpvp st... View full answer
Get step-by-step solutions from verified subject matter experts
