-
Notifications
You must be signed in to change notification settings - Fork 0
/
game.c++
72 lines (67 loc) · 1.65 KB
/
game.c++
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
// C++ program to implement tic tac toe game
#include <iostream>
using namespace std;
void drawBoard(char board[3][3])
{
cout << "-------------\n";
for (int i = 0; i < 3; i++) {
cout << "| ";
for (int j = 0; j < 3; j++) {
cout << board[i][j] << " | ";
}
cout << "\n-------------\n";
}
}
bool checkWin(char board[3][3], char player)
{
for (int i = 0; i < 3; i++) {
if (board[i][0] == player && board[i][1] == player && board[i][2] == player)
return true;
if (board[0][i] == player && board[1][i] == player && board[2][i] == player)
return true;
}
if (board[0][0] == player && board[1][1] == player && board[2][2] == player)
return true;
if (board[0][2] == player && board[1][1] == player && board[2][0] == player)
return true;
return false;
}
int main()
{
char board[3][3] = { { ' ', ' ', ' ' },
{ ' ', ' ', ' ' },
{ ' ', ' ', ' ' } };
char player = 'X';
int row, col;
int turn;
cout << "Welcome to Tic-Tac-Toe!\n";
for (turn = 0; turn < 9; turn++) {
drawBoard(board);
while (true) {
cout << "Player " << player
<< ", enter row (0-2) and column (0-2): ";
cin >> row >> col;
if (board[row][col] != ' ' || row < 0 || row > 2
|| col < 0 || col > 2) {
cout << "Invalid move. Try again.\n";
}
else {
break;
}
}
board[row][col] = player;
if (checkWin(board, player))
{
drawBoard(board);
cout << "Player " << player << " wins!\n";
break;
}
player = (player == 'X') ? 'O' : 'X';
}
drawBoard(board);
if (turn == 9 && !checkWin(board, 'X')
&& !checkWin(board, 'O')) {
cout << "It's a draw!\n";
}
return 0;
}