Tic Tac Toe Project
Tic Tac Toe Project
void board()
{
system("cls");
cout << "\n\n\tTic Tac Toe\n\n";
cout << "Player 1 (X) - Player 2 (O)" << endl << endl;
cout << endl;
cout << " | | " << endl;
cout << " " << box[1] << " | " << box[2] << " | " << box[3] << endl;
cout << "_____|_____|_____" << endl;
cout << " | | " << endl;
cout << " " << box[4] << " | " << box[5] << " | " << box[6] << endl;
cout << "_____|_____|_____" << endl;
cout << " | | " << endl;
cout << " " << box[7] << " | " << box[8] << " | " << box[9] << endl;
cout << " | | " << endl << endl;
}
int main()
{
int player = 1,i,choice;
char sign;
do
{
board();
if(player % 2)
{
player = 1;
}
else
{
player = 2;
}
cout << "Player " << player << ", enter a number: ";
cin >> choice;
if(player == 1)
{
sign = 'X';
}
else
{
sign = 'O';
}
if (choice == 1 && box[1] == '1')
box[1] = sign;
else if (choice == 2 && box[2] == '2')
box[2] = sign;
else if (choice == 3 && box[3] == '3')
box[3] = sign;
else if (choice == 4 && box[4] == '4')
box[4] = sign;
else if (choice == 5 && box[5] == '5')
box[5] = sign;
else if (choice == 6 && box[6] == '6')
box[6] = sign;
else if (choice == 7 && box[7] == '7')
box[7] = sign;
else if (choice == 8 && box[8] == '8')
box[8] = sign;
else if (choice == 9 && box[9] == '9')
box[9] = sign;
else
{
cout<<"Invalid move ";
player--;
cin.ignore();
cin.get();
}
i=checkwin();
player++;
}while(i==-1);
board();
if(i==1)
cout<<"==>\aPlayer "<<--player<<" win ";
else
cout<<"==>\aGame draw";
cin.ignore();
cin.get();
return 0;
}
/*********************************************
FUNCTION TO RETURN GAME STATUS
1 FOR GAME IS OVER WITH RESULT
-1 FOR GAME IS IN PROGRESS
O GAME IS DRAW
**********************************************
/*******************************************************************
END OF PROJECT
********************************************************************/