-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathticktacktoe.cpp
216 lines (193 loc) · 4.51 KB
/
ticktacktoe.cpp
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
#include <iostream>
using namespace std;
using std::cout;
using std::cin;
int main()
{
bool gamecont = true;
string places[3][3];
int counter = 1;
string readiness = "";
for (int i = 0; i < 3; i++)
{
for (int j = 0; j < 3; j++)
{
places[i][j] = "-";
}
}
cout << "WELCOME TO TICK TACK TOE\n";
cout << "these are the positions:\n";
for (int i = 0; i < 3; i++)
{
for (int j = 0; j < 3; j++)
{
cout << "(" << i + 1 << "," << j + 1 << ")";
}
cout << "\n";
}
cout << "give the specific row and column when it is your turn.\n";
cout << "READY? (y/n)";
cin >> readiness;
if (readiness == "y")
{
while (gamecont == true)
{
if ((counter == 10) && (gamecont == true))
{
break;
}
else
{
if ((counter % 2) != 0)
{
for (int i = 0; i < 3; i++)
{
for (int j = 0; j < 3; j++)
{
cout << places[i][j];
}
cout << "\n";
}
int row = 0;
int column = 0;
cout << "\n-----------player1 turn:----------\n";
cout << "which position?";
cout << "enter row:";
cin >> row;
cout << "enter column:";
cin >> column;
if (places[row - 1][column - 1] == "-")
{
places[row - 1][column - 1] = "O";
}
else {
cout << "\nWRONG PLACE!!!\n";
gamecont = false;
}
for (int i = 0; i < 3; i++)
{
string val = places[i][0];
if ((val == "O") || (val == "X"))
{
if ((places[i][0] == places[i][1]) && (places[i][1] == places[i][2]))
{
cout << "\nplayer1 WON THE GAME!!!\n";
gamecont = false;
}
}
}
for (int i = 0; i < 3; i++)
{
string val = places[0][i];
if ((val == "O") || (val == "X"))
{
if ((places[0][i] == places[1][i]) && (places[1][i] == places[2][i]))
{
if (places[0][i] == "O")
{
cout << "\nplayer1 WON THE GAME!!!\n";
gamecont = false;
}
}
}
}
string val = places[0][0];
string val2 = places[0][2];
if ((val == "O") || (val == "X"))
{
if ((places[0][0] == places[1][1]) && (places[1][1] == places[2][2])) {
cout << "\nplayer1 WON THE GAME!!!\n";
gamecont = false;
}
}
if ((val2 == "O") || (val2 == "X"))
{
if ((places[0][2] == places[1][1]) && (places[1][1] == places[2][0])) {
cout << "\nplayer1 WON THE GAME!!!\n";
gamecont = false;
}
}
counter++;
}
else {
for (int i = 0; i < 3; i++)
{
for (int j = 0; j < 3; j++)
{
cout << places[i][j];
}
cout << "\n";
}
int row = 0;
int column = 0;
cout << "\n-----------player2 turn:----------\n";
cout << "which position?";
cout << "enter row:";
cin >> row;
cout << "enter column:";
cin >> column;
if (places[row - 1][column - 1] == "-")
{
places[row - 1][column - 1] = "X";
}
else {
cout << "\nWRONG PLACE!!!\n";
gamecont = false;
}
for (int i = 0; i < 3; i++)
{
string val = places[i][0];
if ((val == "O") || (val == "X"))
{
if ((places[i][0] == places[i][1]) && (places[i][1] == places[i][2]))
{
cout << "\nplayer2 WON THE GAME!!!\n";
gamecont = false;
}
}
}
for (int i = 0; i < 3; i++)
{
string val = places[0][i];
if ((val == "O") || (val == "X"))
{
if ((places[0][i] == places[1][i]) && (places[1][i] == places[2][i]))
{
cout << "\nplayer2 WON THE GAME!!!\n";
gamecont = false;
}
}
}
string val = places[0][0];
string val2 = places[0][2];
if ((val == "O") || (val == "X"))
{
if ((places[0][0] == places[1][1]) && (places[1][1] == places[2][2])) {
cout << "\nplayer2 WON THE GAME!!!\n";
gamecont = false;
}
}
if ((val2 == "O") || (val2 == "X"))
{
if ((places[0][2] == places[1][1]) && (places[1][1] == places[2][0])) {
cout << "\nplayer2 WON THE GAME!!!\n";
gamecont = false;
}
}
counter++;
}
}
}
}
cout << "\n";
cout << "--------------GAME OVER---------------------------\n";
for (int i = 0; i < 3; i++)
{
for (int j = 0; j < 3; j++)
{
cout << places[i][j];
}
cout << "\n";
}
return 0;
}