This is a simple two-player Tic Tac Toe game developed in C++. It runs in the terminal/command line and allows players to take turns on a 3x3 grid by selecting positions using numbers 1 to 9.
- The game starts with a blank 3x3 board.
- Players take turns entering a number (1–9) to place their symbol (
X
orO
) on the board. - After each move, the board updates and checks for a win or a draw.
- The game ends when a player wins or when the board is full (a draw).
- Run the compiled program in your terminal.
- Player 1 uses
X
, and Player 2 usesO
. - Players input a number from 1 to 9 to mark a position on the grid.
- The board updates after each turn and displays the current state.
- The game announces the winner or declares a draw.