Question
- write one program in c++ that uses two dimensional array to allow two players to play tic-tac-toe. The program asks for moves alternately from
- write one program in c++ that uses two dimensional array to allow two players to play tic-tac-toe. The program asks for moves alternately from player X and player O to enter a number (1 - 9) they wish to make to play the game.The program displays the game positions as follows: 1 2 3 4 5 6 7 8 9 After each move, the program displays the changed board, for example: X X O 4 5 6 O 8 9
very important the program should have these functions - the program should have following functions: -- a function to take in user's input. -- a function to print out the board and move. -- a function to tell if game is over. -- a function to tell who wins (or draw.)
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started