Tic Tac Toe (Console)

Project Image(s)
Tic Tac Toe (Console)


Project Details
Platform:
Windows, Linux
Language Used:
C++
Code Repository:
Download Binary:

Project Description

This implementation of Tic Tac Toe is written in C++ and outputs everything to the console. When the game starts, the console will display an empty 3x3 grid representing the Tic Tac Toe board. The two players will take turns placing their symbols on the board by entering the row and column numbers of the space they want to occupy. The game will then check if the move is valid and update the board accordingly. If a player achieves three in a row or all spaces on the board are filled, the game will end and display the result on the console. This implementation does not include an AI player option, so it is intended for two human players to play against each other.