Table of Contents
A tic tac toe/ noughts and crosses console game. In this program 2 players will take turns by marking either an "X" or "O" on the grid.The first player to fill a row/column/diagonal line wins!
The following topics are covered: User Input
, Booleans
, While loops
, Arrays
, Methods
and Conditional Statements
.
Setting up your project locally. To get a local copy up and running follow these simple example steps.
This is a list of requirements you need in order to setup .NET locally.
.NET SDK (version 6.0 or later recommended)
Any IDE that supports .NET development (e.g., Visual Studio, VS Code with C# plugin)
A step-by-step series of instructions that tell you how to get a development environment running.
- Clone the repo
git clone
- Navigate to the project directory:
cd TicTacToe
- Build the project:
dotnet build
This will compile the application and any dependencies.
How to run the application:
dotnet run