Can't Figure Out How To Not Use System()

Hello,
I am sort of new to programming and have been working on a Tic Tac Toe game. I used evil system() a ton of times and didn't make this program code very practical.
If someone could revise my program/help out with code it would be greatly appreciated!
Here is my code:

Oh great, It won't fit in the character limit...
I will post it in 3 replies to the topic.

PS: My compiler is Visual Studio Express 2012 and I removed #include "stdafx.h" for this post.


Thanks,
Arden
Last edited on
Here is the first part of my code:
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
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
#include <iostream>
#include <Windows.h>
#include <cstdlib>
using namespace std;

int _tmain(int argc, _TCHAR* argv[])
{
	SetConsoleTitle( TEXT( "TicTacToe Binary Edition V2.1" ) );
	int aa = 0;
	int ab = 0;
	int ac = 0;
	int ba = 0;
	int bb = 0;
	int bc = 0;
	int ca = 0;
	int cb = 0;
	int cc = 0;
	int start = 0;
	int close = 0;
	int tokenLine = 0;
	int tokenColumn = 0;
	int value1 = 1;
	int value2 = 2;
	int value0 = 0;
	int getDone = 1;
	int winP1 = 0;
	int winP2 = 0;
	int roundWon = 0;
	
	system("color 90");
	std::cout<<"Hi! Welcome to the new Advanced TicTacToe Binary Edition V2.1.0!\n";
	std::cout<<"Coded By Arden S\n";
	Sleep(3000);
	system("CLS");
	std::cout<<"Type 1 to start game, 2 to exit, and 3 to view instructions\n";
	std::cin>>start;

	if (start == 3)
	{
		system("CLS");
		std::cout<<"Just type the column and line number of the slot you want to put a token in! P1's tokens are 1s and P2's are 2s. Putting a 4 into the Line input area will skip your turn. Type Hi into the input box at any time to quit game. WARNING: If you skip a turn this will be taken out of the game's 9 programmed rounds shortening your game. Game has auto score detect\n";
		std::cout<<"Any key then enter To Continue\n";
		std::cin>>close;
		system("CLS");
		system("color 40");
		SetConsoleTitle( TEXT("Bye!") );
		std::cout<<"Exiting program relaunch to play game\n";
		Sleep(2000);
	}
	if (start == 2)
	{
		system("CLS");
		SetConsoleTitle( TEXT("Bye!") );
		std::cout<<"Come play again!!!\n";
		Sleep(2000);
		system("CLS");
		system("color 40");
		std::cout<<"Going down...\n";
		Sleep(1500);
	}
	if (start == 1)
	{
		system("CLS");
		std::cout<<"This is my very first game so hope you like it!!!\n";
		Sleep(3000);
		while (getDone == 1)
		{
		system("color 90");
		system("CLS");
		aa = value0;
		ab = value0;
		ac = value0;
		ba = value0;
		bb = value0;
		bc = value0;
		ca = value0;
		cb = value0;
		cc = value0;
		roundWon = value0;
		std::cout<<"Creating game board\n";
		Sleep(1000);
		system("CLS");
		std::cout<<"Creating game board.\n";
		Sleep(1000);
		system("CLS");
		std::cout<<"Creating game board..\n";
		Sleep(1000);
		system("CLS");
		std::cout<<"Creating game board...\n";
		Sleep(1000);
		system("CLS");
		std::cout<<"Game Ready\n";
		std::cout<<"Scores: P1: "<<winP1<<" P2: "<<winP2<<"\n";
		std::cout<<"           LINE\n";
		std::cout<<"      | 1 | 2 | 3 |\n";
		std::cout<<"C |---|---|---|---|\n";
		std::cout<<"O | 1 | "<<aa<<" | "<<ab<<" | "<<ac<<" |\n";
		std::cout<<"L |---|---|---|---|\n";
		std::cout<<"U | 2 | "<<ba<<" | "<<bb<<" | "<<bc<<" |\n";
		std::cout<<"M |---|---|---|---|\n";
		std::cout<<"N | 3 | "<<ca<<" | "<<cb<<" | "<<cc<<" |\n";
		std::cout<<"  |---|-----------|\n";
		std::cout<<"P1's Turn\n";
		std::cout<<"Line: ";
		std::cin>>tokenLine;
		std::cout<<"Column: ";
		std::cin>>tokenColumn;
		if (tokenLine == 1 && tokenColumn == 1)
		{
			if (aa == 0)
			{
				aa = value1;
			}
		}
		if (tokenLine == 1 && tokenColumn == 2)
		{
			if (ba == 0)
			{
				ba = value1;
			}
		}
		if (tokenLine == 1 && tokenColumn == 3)
		{
			if (ca == 0)
			{
				ca = value1;
			}
		}
		if (tokenLine == 2 && tokenColumn == 1)
		{
			if (ab == 0)
			{
				ab = value1;
			}
		}
		if (tokenLine == 2 && tokenColumn == 2)
		{
			if (bb == 0)
			{
				bb = value1;
			}
		}
		if (tokenLine == 2 && tokenColumn == 3)
		{
			if (cb == 0)
			{
				cb = value1;
			}
		}
		if (tokenLine == 3 && tokenColumn == 1)
		{
			if (ac == 0)
			{
				ac = value1;
			}
		}
		if (tokenLine == 3 && tokenColumn == 2)
		{
			if (bc == 0)
			{
				bc = value1;
			}
		}
		if (tokenLine == 3 && tokenColumn == 3)
		{
			if (cc == 0)
			{
				cc = value1;
			}
		}
		if (tokenLine == 4)
		{
			std::cout<<"Turn Skipped\n";
			Sleep(1500);
		}
		system("CLS");
		std::cout<<"Token Placed\n";
		std::cout<<"Scores: P1: "<<winP1<<" P2: "<<winP2<<"\n";
		std::cout<<"           Line\n";
		std::cout<<"      | 1 | 2 | 3 |\n";
		std::cout<<"C |---|---|---|---|\n";
		std::cout<<"O | 1 | "<<aa<<" | "<<ab<<" | "<<ac<<" |\n";
		std::cout<<"L |---|---|---|---|\n";
		std::cout<<"U | 2 | "<<ba<<" | "<<bb<<" | "<<bc<<" |\n";
		std::cout<<"M |---|---|---|---|\n";
		std::cout<<"N | 3 | "<<ca<<" | "<<cb<<" | "<<cc<<" |\n";
		std::cout<<"  |---|-----------|\n";
		std::cout<<"P2's Turn\n";
		std::cout<<"Line: ";
		std::cin>>tokenLine;
		std::cout<<"Column: ";
		std::cin>>tokenColumn;
		if (tokenLine == 1 && tokenColumn == 1)
		{
			if (aa == 0)
			{
				aa = value2;
			}
		}
		if (tokenLine == 1 && tokenColumn == 2)
		{
			if (ba == 0)
			{
				ba = value2;
			}
		}
		if (tokenLine == 1 && tokenColumn == 3)
		{
			if (ca == 0)
			{
				ca = value2;
			}
		}
		if (tokenLine == 2 && tokenColumn == 1)
		{
			if (ab == 0)
			{
				ab = value2;
			}
		}
		if (tokenLine == 2 && tokenColumn == 2)
		{
			if (bb == 0)
			{
				bb = value2;
			}
		}
		if (tokenLine == 2 && tokenColumn == 3)
		{
			if (cb == 0)
			{
				cb = value2;
			}
		}
		if (tokenLine == 3 && tokenColumn == 1)
		{
			if (ac == 0)
			{
				ac = value2;
			}
		}
		if (tokenLine == 3 && tokenColumn == 2)
		{
			if (bc == 0)
			{
				bc = value2;
			}
		}
		if (tokenLine == 3 && tokenColumn == 3)
		{
			if (cc == 0)
			{
				cc = value2;
			}
		}
		if (tokenLine == 4)
		{
			std::cout<<"Turn Skipped\n";
			Sleep(1500);
		}
		system("CLS");
		std::cout<<"Token Placed\n";
		std::cout<<"Scores: P1: "<<winP1<<" P2: "<<winP2<<"\n";
		std::cout<<"           Line\n";
		std::cout<<"      | 1 | 2 | 3 |\n";
		std::cout<<"C |---|---|---|---|\n";
		std::cout<<"O | 1 | "<<aa<<" | "<<ab<<" | "<<ac<<" |\n";
		std::cout<<"L |---|---|---|---|\n";
		std::cout<<"U | 2 | "<<ba<<" | "<<bb<<" | "<<bc<<" |\n";
		std::cout<<"M |---|---|---|---|\n";
		std::cout<<"N | 3 | "<<ca<<" | "<<cb<<" | "<<cc<<" |\n";
		std::cout<<"  |---|-----------|\n";
		std::cout<<"P1's Turn\n";
		std::cout<<"Line: ";
		std::cin>>tokenLine;
		std::cout<<"Column: ";
		std::cin>>tokenColumn;
		if (tokenLine == 1 && tokenColumn == 1)
		{
			if (aa == 0)
			{
				aa = value1;
			}
		}
		if (tokenLine == 1 && tokenColumn == 2)
		{
			if (ba == 0)
			{
				ba = value1;
			}
		}
		if (tokenLine == 1 && tokenColumn == 3)
		{
			if (ca == 0)
			{
				ca = value1;
			}
		}
		if (tokenLine == 2 && tokenColumn == 1)
		{
			if (ab == 0)
			{
				ab = value1;
			}
		}
		if (tokenLine == 2 && tokenColumn == 2)
		{
			if (bb == 0)
			{
				bb = value1;
			}
		}
		if (tokenLine == 2 && tokenColumn == 3)
		{
			if (cb == 0)
			{
				cb = value1;
			}
		}
		if (tokenLine == 3 && tokenColumn == 1)
		{
			if (ac == 0)
			{
				ac = value1;
			}
		}
		if (tokenLine == 3 && tokenColumn == 2)
		{
			if (bc == 0)
			{
				bc = value1;
			}
		}
		if (tokenLine == 3 && tokenColumn == 3)
		{
			if (cc == 0)
			{
				cc = value1;
			}
		}
		if (tokenLine == 4)
		{
			std::cout<<"Turn Skipped\n";
			Sleep(1500);
		}
		system("CLS");
		std::cout<<"Token Placed\n";
		std::cout<<"Scores: P1: "<<winP1<<" P2: "<<winP2<<"\n";
		std::cout<<"           Line\n";
		std::cout<<"      | 1 | 2 | 3 |\n";
		std::cout<<"C |---|---|---|---|\n";
		std::cout<<"O | 1 | "<<aa<<" | "<<ab<<" | "<<ac<<" |\n";
		std::cout<<"L |---|---|---|---|\n";
		std::cout<<"U | 2 | "<<ba<<" | "<<bb<<" | "<<bc<<" |\n";
		std::cout<<"M |---|---|---|---|\n";
		std::cout<<"N | 3 | "<<ca<<" | "<<cb<<" | "<<cc<<" |\n";
		std::cout<<"  |---|-----------|\n";
		std::cout<<"P2's Turn\n";
		std::cout<<"Line: ";
		std::cin>>tokenLine;
		std::cout<<"Column: ";
		std::cin>>tokenColumn;
		
Next part:
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
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
if (tokenLine == 1 && tokenColumn == 1)
		{
			if (aa == 0)
			{
				aa = value2;
			}
		}
		if (tokenLine == 1 && tokenColumn == 2)
		{
			if (ba == 0)
			{
				ba = value2;
			}
		}
		if (tokenLine == 1 && tokenColumn == 3)
		{
			if (ca == 0)
			{
				ca = value2;
			}
		}
		if (tokenLine == 2 && tokenColumn == 1)
		{
			if (ab == 0)
			{
				ab = value2;
			}
		}
		if (tokenLine == 2 && tokenColumn == 2)
		{
			if (bb == 0)
			{
				bb = value2;
			}
		}
		if (tokenLine == 2 && tokenColumn == 3)
		{
			if (cb == 0)
			{
				cb = value2;
			}
		}
		if (tokenLine == 3 && tokenColumn == 1)
		{
			if (ac == 0)
			{
				ac = value2;
			}
		}
		if (tokenLine == 3 && tokenColumn == 2)
		{
			if (bc == 0)
			{
				bc = value2;
			}
		}
		if (tokenLine == 3 && tokenColumn == 3)
		{
			if (cc == 0)
			{
				cc = value2;
			}
		}
		if (tokenLine == 4)
		{
			std::cout<<"Turn Skipped\n";
			Sleep(1500);
		}
		system("CLS");
		std::cout<<"Token Placed\n";
		std::cout<<"Scores: P1: "<<winP1<<" P2: "<<winP2<<"\n";
		std::cout<<"           Line\n";
		std::cout<<"      | 1 | 2 | 3 |\n";
		std::cout<<"C |---|---|---|---|\n";
		std::cout<<"O | 1 | "<<aa<<" | "<<ab<<" | "<<ac<<" |\n";
		std::cout<<"L |---|---|---|---|\n";
		std::cout<<"U | 2 | "<<ba<<" | "<<bb<<" | "<<bc<<" |\n";
		std::cout<<"M |---|---|---|---|\n";
		std::cout<<"N | 3 | "<<ca<<" | "<<cb<<" | "<<cc<<" |\n";
		std::cout<<"  |---|-----------|\n";
		std::cout<<"P1's Turn\n";
		std::cout<<"Line: ";
		std::cin>>tokenLine;
		std::cout<<"Column: ";
		std::cin>>tokenColumn;
		if (tokenLine == 1 && tokenColumn == 1)
		{
			if (aa == 0)
			{
				aa = value1;
			}
		}
		if (tokenLine == 1 && tokenColumn == 2)
		{
			if (ba == 0)
			{
				ba = value1;
			}
		}
		if (tokenLine == 1 && tokenColumn == 3)
		{
			if (ca == 0)
			{
				ca = value1;
			}
		}
		if (tokenLine == 2 && tokenColumn == 1)
		{
			if (ab == 0)
			{
				ab = value1;
			}
		}
		if (tokenLine == 2 && tokenColumn == 2)
		{
			if (bb == 0)
			{
				bb = value1;
			}
		}
		if (tokenLine == 2 && tokenColumn == 3)
		{
			if (cb == 0)
			{
				cb = value1;
			}
		}
		if (tokenLine == 3 && tokenColumn == 1)
		{
			if (ac == 0)
			{
				ac = value1;
			}
		}
		if (tokenLine == 3 && tokenColumn == 2)
		{
			if (bc == 0)
			{
				bc = value1;
			}
		}
		if (tokenLine == 3 && tokenColumn == 3)
		{
			if (cc == 0)
			{
				cc = value1;
			}
		}
		if (tokenLine == 4)
		{
			std::cout<<"Turn Skipped\n";
			Sleep(1500);
		}
		system("CLS");
		std::cout<<"Token Placed\n";
		if (roundWon == 0)
		{
		if (aa == 1 && ab == 1 && ac == 1)
		{
			system("color 60");
			winP1++;
			roundWon++;
			std::cout<<"P1 Wins\n";
		}
		if (ba == 1 && bb == 1 && bc == 1)
		{
			system("color 60");
			roundWon++;
			winP1++;
			std::cout<<"P1 Wins\n";
		}
		if (ca == 1 && cb == 1 && cc == 1)
		{
			system("color 60");
			roundWon++;
			winP1++;
			std::cout<<"P1 Wins\n";
		}
		if (aa == 1 && ba == 1 && ca == 1)
		{
			system("color 60");
			roundWon++;
			winP1++;
			std::cout<<"P1 Wins\n";
		}
		if  (ab == 1 && bb == 1 && cb == 1)
		{
			system("color 60");
			roundWon++;
			winP1++;
			std::cout<<"P1 Wins\n";
		}
		if (ac == 1 && bc == 1 && cc == 1)
		{
			system("color 60");
			roundWon++;
			winP1++;
			std::cout<<"P1 Wins\n";
		}
		if (aa == 1 && bb == 1 && cc == 1)
		{
			system("color 60");
			roundWon++;
			winP1++;
			std::cout<<"P1 Wins\n";
		}
		if (ac == 1 && bb == 1 && ca == 1)
		{
			system("color 60");
			roundWon++;
			winP1++;
			std::cout<<"P1 Wins\n";
		}
		}
		std::cout<<"Scores: P1: "<<winP1<<" P2: "<<winP2<<"\n";
		std::cout<<"           Line\n";
		std::cout<<"      | 1 | 2 | 3 |\n";
		std::cout<<"C |---|---|---|---|\n";
		std::cout<<"O | 1 | "<<aa<<" | "<<ab<<" | "<<ac<<" |\n";
		std::cout<<"L |---|---|---|---|\n";
		std::cout<<"U | 2 | "<<ba<<" | "<<bb<<" | "<<bc<<" |\n";
		std::cout<<"M |---|---|---|---|\n";
		std::cout<<"N | 3 | "<<ca<<" | "<<cb<<" | "<<cc<<" |\n";
		std::cout<<"  |---|-----------|\n";
		std::cout<<"P2's Turn\n";
		std::cout<<"Line: ";
		std::cin>>tokenLine;
		std::cout<<"Column: ";
		std::cin>>tokenColumn;
		if (tokenLine == 1 && tokenColumn == 1)
		{
			if (aa == 0)
			{
				aa = value2;
			}
		}
		if (tokenLine == 1 && tokenColumn == 2)
		{
			if (ba == 0)
			{
				ba = value2;
			}
		}
		if (tokenLine == 1 && tokenColumn == 3)
		{
			if (ca == 0)
			{
				ca = value2;
			}
		}
		if (tokenLine == 2 && tokenColumn == 1)
		{
			if (ab == 0)
			{
				ab = value2;
			}
		}
		if (tokenLine == 2 && tokenColumn == 2)
		{
			if (bb == 0)
			{
				bb = value2;
			}
		}
		if (tokenLine == 2 && tokenColumn == 3)
		{
			if (cb == 0)
			{
				cb = value2;
			}
		}
		if (tokenLine == 3 && tokenColumn == 1)
		{
			if (ac == 0)
			{
				ac = value2;
			}
		}
		if (tokenLine == 3 && tokenColumn == 2)
		{
			if (bc == 0)
			{
				bc = value2;
			}
		}
		if (tokenLine == 3 && tokenColumn == 3)
		{
			if (cc == 0)
			{
				cc = value2;
			}
		}
		if (tokenLine == 4)
		{
			std::cout<<"Turn Skipped\n";
			Sleep(1500);
		}
		system("CLS");
		std::cout<<"Token Placed\n";
		if (roundWon == 0)
		{
		if (aa == 2 && ab == 2 && ac == 2)
		{
			system("color 60");
			roundWon++;
			winP2++;
			std::cout<<"P2 Wins\n";
		}
		if (ba == 2 && bb == 2 && bc == 2)
		{
			system("color 60");
			roundWon++;
			winP2++;
			std::cout<<"P2 Wins\n";
		}
		if (ca == 2 && cb == 2 && cc == 2)
		{
			system("color 60");
			roundWon++;
			winP2++;
			std::cout<<"P2 Wins\n";
		}
		if (aa == 2 && ba == 2 && ca == 2)
		{
			system("color 60");
			roundWon++;
			winP2++;
			std::cout<<"P2 Wins\n";
		}
		if  (ab == 2 && bb == 2 && cb == 2)
		{
			system("color 60");
			roundWon++;
			winP2++;
			std::cout<<"P2 Wins\n";
		}
		if (ac == 2 && bc == 2 && cc == 2)
		{
			system("color 60");
			roundWon++;
			winP2++;
			std::cout<<"P2 Wins\n";
		}
		if (aa == 2 && bb == 2 && cc == 2)
		{
			system("color 60");
			roundWon++;
			winP2++;
			std::cout<<"P2 Wins\n";
		}
		if (ac == 2 && bb == 2 && ca == 2)
		{
			system("color 60");
			roundWon++;
			winP2++;
			std::cout<<"P2 Wins\n";
		}
		}
		std::cout<<"Scores: P1: "<<winP1<<" P2: "<<winP2<<"\n";
		std::cout<<"           Line\n";
		std::cout<<"      | 1 | 2 | 3 |\n";
		std::cout<<"C |---|---|---|---|\n";
		std::cout<<"O | 1 | "<<aa<<" | "<<ab<<" | "<<ac<<" |\n";
		std::cout<<"L |---|---|---|---|\n";
		std::cout<<"U | 2 | "<<ba<<" | "<<bb<<" | "<<bc<<" |\n";
		std::cout<<"M |---|---|---|---|\n";
		std::cout<<"N | 3 | "<<ca<<" | "<<cb<<" | "<<cc<<" |\n";
		std::cout<<"  |---|-----------|\n";
		std::cout<<"P1's Turn\n";
		std::cout<<"Line: ";
		std::cin>>tokenLine;
		std::cout<<"Column: ";
		std::cin>>tokenColumn;
		if (tokenLine == 1 && tokenColumn == 1)
		{
			if (aa == 0)
			{
				aa = value1;
			}
		}
		if (tokenLine == 1 && tokenColumn == 2)
		{
			if (ba == 0)
			{
				ba = value1;
			}
		}
		if (tokenLine == 1 && tokenColumn == 3)
		{
			if (ca == 0)
			{
				ca = value1;
			}
		}
		if (tokenLine == 2 && tokenColumn == 1)
		{
			if (ab == 0)
			{
				ab = value1;
			}
		}
		if (tokenLine == 2 && tokenColumn == 2)
		{
			if (bb == 0)
			{
				bb = value1;
			}
		}
		if (tokenLine == 2 && tokenColumn == 3)
		{
			if (cb == 0)
			{
				cb = value1;
			}
		}
		if (tokenLine == 3 && tokenColumn == 1)
		{
			if (ac == 0)
			{
				ac = value1;
			}
		}
		if (tokenLine == 3 && tokenColumn == 2)
		{
			if (bc == 0)
			{
				bc = value1;
			}
Last part:
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
a == 1 && ba == 1 && ca == 1)
		{
			system("color 60");
			roundWon++;
			winP1++;
			std::cout<<"P1 Wins\n";
		}
		if  (ab == 1 && bb == 1 && cb == 1)
		{
			system("color 60");
			roundWon++;
			winP1++;
			std::cout<<"P1 Wins\n";
		}
		if (ac == 1 && bc == 1 && cc == 1)
		{
			system("color 60");
			roundWon++;
			winP1++;
			std::cout<<"P1 Wins\n";
		}
		if (aa == 1 && bb == 1 && cc == 1)
		{
			system("color 60");
			roundWon++;
			winP1++;
			std::cout<<"P1 Wins\n";
		}
		if (ac == 1 && bb == 1 && ca == 1)
		{
			system("color 60");
			roundWon++;
			winP1++;
			std::cout<<"P1 Wins\n";
		}
		}
		std::cout<<"Scores: P1: "<<winP1<<" P2: "<<winP2<<"\n";
		std::cout<<"           Line\n";
		std::cout<<"      | 1 | 2 | 3 |\n";
		std::cout<<"C |---|---|---|---|\n";
		std::cout<<"O | 1 | "<<aa<<" | "<<ab<<" | "<<ac<<" |\n";
		std::cout<<"L |---|---|---|---|\n";
		std::cout<<"U | 2 | "<<ba<<" | "<<bb<<" | "<<bc<<" |\n";
		std::cout<<"M |---|---|---|---|\n";
		std::cout<<"N | 3 | "<<ca<<" | "<<cb<<" | "<<cc<<" |\n";
		std::cout<<"  |---|-----------|\n";
		system("color 60");
		std::cout<<"If a win is not signalled above no one won\n";
		std::cout<<"Thank's for playing!!!\n";
		std::cout<<"Would you like to play again?\n";
		std::cout<<"1 = Yes, 2 = No\n";
		std::cin>>getDone;
		}
		system("CLS");
		system("color 09");
		SetConsoleTitle( TEXT("Bye!") );
		std::cout<<"0000000000000000000000000000000000000\n";
		std::cout<<"0000000000000000000000000000000000000\n";
		std::cout<<"000      00000 0000000 00      000000\n";
		std::cout<<"000 00000 00000 00000 000 00000000000\n";
		std::cout<<"000 00000 000000 000 0000 00000000000\n";
		std::cout<<"000 0000 00000000 0 00000 00000000000\n";
		std::cout<<"000      000000000 000000      000000\n";
		std::cout<<"000 0000 000000000 000000 00000000000\n";
		std::cout<<"000 00000 00000000 000000 00000000000\n";
		std::cout<<"000 00000 00000000 000000 00000000000\n";
		std::cout<<"000      000000000 000000      000000\n";
		std::cout<<"0000000000000000000000000000000000000\n";
		Sleep(6000);
	}
	return 0;
}
Topic archived. No new replies allowed.