-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtic_tac_toe.cpp
235 lines (201 loc) · 5.5 KB
/
tic_tac_toe.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
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
#include<iostream>
using namespace std;
//For write the numbers in the secreen
char matrix[3][3] = { '1','2','3','4','5','6','7','8','9' };
char player = 'X';
int nom;//this for count the number of the input for the player
void printmatrix()
{
system("cls"); //system clear
cout << "\t\t\t\t ******** Welcome To Tec Tac Toe Game ********\n\n";
for (int i = 0; i < 3; i++)
{
for (int j = 0; j < 3; j++)
{
//For write space bettwen the numbers
cout << " " << matrix[i][j] << " ";
}
//For write 3 new lines bettwen thr numbers
cout <<"\n\n\n";
}
}
//this funiction for input the chooise that the player will choose the 1 for X and 2 for O
void Inplay()
{
int pos;
cout << "\t It Is ( "<< player << " ) Turn .....\n" <<"\tChoose Your Position Player ( " << player << " )";
cin >> pos;
if (pos == 1)
{
//this one if the filed is in use the program will tell u and it will return thr input with out los the old inputs
if (matrix[0][0] == '1')
matrix[0][0] = player;
else
{
cout << "\t\t Failed Is Already In Use Please Try Again \n";
Inplay();
}
}
else if (pos == 2)
{
//this one if the filed is in use the program will tell u and it will return thr input with out los the old inputs
if (matrix[0][1] == '2')
matrix[0][1] = player;
else
{
cout << "\t\t Filed Is Already In Use Please Try Again \n";
Inplay();
}
}
else if (pos == 3)
{
//this one if the filed is in use the program will tell u and it will return thr input with out los the old inputs
if (matrix[0][2] == '3')
matrix[0][2] = player;
else
{
cout << "\t\t Filed Is Already In Use Please Try Again \n";
Inplay();
}
}
else if (pos == 4)
{
//this one if the filed is in use the program will tell u and it will return thr input with out los the old inputs
if (matrix[1][0] == '4')
matrix[1][0] = player;
else
{
cout << "\t\t Filed Is Already In Use Please Try Again \n";
Inplay();
}
}
else if (pos == 5)
{
//this one if the filed is in use the program will tell u and it will return thr input with out los the old inputs
if (matrix[1][1] == '5')
matrix[1][1] = player;
else
{
cout << "\t\t Filed Is Already In Use Please Try Again \n";
Inplay();
}
}
else if (pos == 6)
{
//this one if the filed is in use the program will tell u and it will return thr input with out los the old inputs
if (matrix[1][2] == '6')
matrix[1][2] = player;
else
{
cout << "\t\t Filed Is Already In Use Please Try Again \n";
Inplay();
}
}
else if (pos == 7)
{
//this one if the filed is in use the program will tell u and it will return thr input with out los the old inputs
if (matrix[2][0] == '7')
matrix[2][0] = player;
else
{
cout << "\t\t Filed Is Already In Use Please Try Again \n";
Inplay();
}
}
else if (pos == 8)
{
//this one if the filed is in use the program will tell u and it will return thr input with out los the old inputs
if (matrix[2][1] == '8')
matrix[2][1] = player;
else
{
cout << "\t\t Filed Is Already In Use Please Try Again \n";
Inplay();
}
}
else if (pos == 9)
{
//this one if the filed is in use the program will tell u and it will return thr input with out los the old inputs
if (matrix[2][2] == '9')
matrix[2][2] = player;
else
{
cout << "\t\t Filed Is Already In Use Please Try Again \n";
Inplay();
}
}
}
void ToPlayer()
{
if (player == 'X')
player = 'O';
else
player = 'X';
}
char whowin()
{
//Player 'X'
if (matrix[0][0] == 'X' &&matrix[0][1] == 'X' && matrix[0][2] == 'X')
return 'X';
if (matrix[1][0] == 'X' &&matrix[1][1] == 'X' && matrix[1][2] == 'X')
return 'X';
if (matrix[2][0] == 'X' &&matrix[2][1] == 'X' && matrix[2][2] == 'X')
return 'X';
if (matrix[0][0] == 'X' &&matrix[1][0] == 'X' && matrix[2][0] == 'X')
return 'X';
if (matrix[0][1] == 'X' &&matrix[1][1] == 'X' && matrix[2][1] == 'X')
return 'X';
if (matrix[0][2] == 'X' &&matrix[1][2] == 'X' && matrix[2][2] == 'X')
return 'X';
if (matrix[0][0] == 'X' &&matrix[1][1] == 'X' && matrix[2][2] == 'X')
return 'X';
if (matrix[2][0] == 'X' &&matrix[1][1] == 'X' && matrix[0][2] == 'X')
return 'X';
//Player 'O'
if (matrix[0][0] == 'O' &&matrix[0][1] == 'O' && matrix[0][2] == 'O')
return 'O';
if (matrix[1][0] == 'O' &&matrix[1][1] == 'O' && matrix[1][2] == 'O')
return 'O';
if (matrix[2][0] == 'O' &&matrix[2][1] == 'O' && matrix[2][2] == 'O')
return 'O';
if (matrix[0][0] == 'O' &&matrix[1][0] == 'O' && matrix[2][0] == 'O')
return 'O';
if (matrix[0][1] == 'O' &&matrix[1][1] == 'O' && matrix[2][1] == 'O')
return 'O';
if (matrix[0][2] == 'O' &&matrix[1][2] == 'O' && matrix[2][2] == 'O')
return 'O';
if (matrix[0][0] == 'O' &&matrix[1][1] == 'O' && matrix[2][2] == 'O')
return 'O';
if (matrix[2][0] == 'O' &&matrix[1][1] == 'O' && matrix[0][2] == 'O')
return 'O';
return '/';
}
int main()
{
nom = 0;
printmatrix();
while (1)
{
nom ++;
Inplay();
printmatrix();
if (whowin() == 'X')
{
cout << " \t Player \"X\" Is The Winner ! \n";
break;
}
else if (whowin() == 'O')
{
cout << " \t Player \"O\" Is The Winner ! \n";
break;
}
else if (whowin() == '/' && nom == 9)
{
cout << " \t It Is A Draw !!! \n";
break;
}
ToPlayer();
}
system("pause");
return 0;
}