Question: C++ Write a modular program (no classes yet) that allows two players to play a game of tic-tac-toe. Use a two-dimensional char array with 3

C++

Write a modular program (no classes yet) that allows two players to play a game of tic-tac-toe. Use a two-dimensional char array with 3 rows and 3 columns as the game board. Each element of the array should be initialized with an asterisk (*). The program should display the initial board configuration and then start a loop that does the following:

Allow player 1 to select a location on the board for an X by entering a row and column number. Then redisplay the board with an X replacing the * in the chosen location.

If there is no winner yet and the board is not yet full, allow player 2 to select a location on the board for an O by entering a row and column number. Then redisplay the board with an O replacing the * in the chosen location.

The loop should continue until a player has won or a tie has occurred, then display a message indicating who won, or reporting that a tie occurred.

Player 1 wins when there are three Xs in a row, a column, or a diagonal on the game board.

Player 2 wins when there are three Ox in a row, a column, or a diagonal on the game board.

A tie occurs when all of the locations on the board are full, but there is no winner.

Input Validation: Only allow legal moves to be entered. The row must be 1, 2, or 3. The column must be 1, 2 3. The (row, column) position entered must currently be empty (i.e., still have an asterisk in it).

You may use the discussion board to solicit functions from other students but NOT THE ENTIRE program. If you help other students by posting a function, put a copyright notice and a notice not to remove your name from the function so you can get credit for that portion of the code.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!