-
Notifications
You must be signed in to change notification settings - Fork 0
/
Ultimate Football League.cpp
406 lines (405 loc) · 9.84 KB
/
Ultimate Football League.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
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
#include<stdio.h>
#include<conio.h>
#include<string.h>
#include<stdlib.h>
#include<time.h>
#include<ctype.h>
/**
* Shows the menu on the start
*/
void show_menu()
{
printf("\t\t\tUltimate Football League\n");
printf("This is a Group & Knockout Phase\n");
printf("Team's Name Must Be At Least Greater Than 8 Characters\n");
printf("Nationality Name Must be At Most 5 Characters\n");
}
/**
* Structure of the object
*/
struct football
{
char name[50]; /*!< Name of the Club */
char nation[50]; /*!< Nationality of the Club */
int ranking=0; /*!< Ranking of the Club */
int points=0; /*!< Points of the Club */
int goals=0; /*!< Goals of the Club */
int score=0; /*!< Score of the Club */
int point1=0; /*!< Points of the Club */
};
/**
* Main Method
*/
int main (void)
{
struct football f[10];
srand(time(NULL));
int i,j;
int temp=0;
int played=0;
char choice;
show_menu();
for (i=0; i<10; i++)
{
printf("\t\t\tTeam Number %d\n", i+1);
fflush(stdin);
printf("Name of the Football club:");
gets(f[i].name);
printf("Nationality of the club:");
gets(f[i].nation);
}
printf("\n");
printf("Club Name\tNation\tRank\tPlayed\tGoals For\tPoints\n");
for (i=0; i<10; i++)
{
printf("%s\t%s\t%d\t%d\t%d\t\t%d\n",f[i].name,f[i].nation,f[i].ranking,played=0,f[i].goals,f[i].points);
}
printf("\n");
printf("\t\t\tRound 1\n");
printf("\t\t\tMatches List:\n");
printf("Enter the Scores:");
printf("%s-%s:",f[0].name,f[9].name);
scanf("%d", &f[0].score);
f[0].goals=f[0].goals+f[0].score;
printf("-");
scanf("%d", &f[9].score);
f[9].goals=f[9].goals+f[9].score;
if (f[0].score>f[9].score)
{
f[0].points=f[0].points+3;
}
else if(f[0].score<f[9].score)
{
f[9].points=f[9].points+3;
}
else
{
f[0].points=f[0].points+1;
f[9].points=f[9].points+1;
}
printf("Do You Want To Sim Matches(Y/N):");
scanf("%s", &choice);
if (choice=='Y' || choice=='y')
{
for (i=0; i<9; i++)
{
printf("Enter the Scores:\n");
printf("%s-%s:",f[i].name,f[i+1].name);
f[i].score=1+rand()%9;
f[i].goals=f[i].goals+f[i].score;
printf("-");
f[i+1].score=1+rand()%9;
f[i+1].goals=f[i+1].goals+f[i+1].score;
if (f[i].score>f[i+1].score)
{
f[i].points=f[i].points+3;
}
else if(f[i].score<f[i+1].score)
{
f[i+1].points=f[i+1].points+3;
}
else
{
f[i].points=f[i].points+1;
f[i+1].points=f[i+1].points+1;
}
}
}
else if(choice=='N' || choice=='n')
{
for (i=0; i<9; i++)
{ printf("Enter the Scores:");
printf("%s-%s:",f[i].name,f[i+1].name);
scanf("%d", &f[i].score);
f[i].goals=f[i].goals+f[i].score;
printf("-");
scanf("%d", &f[i+1].score);
f[i+1].goals=f[i+1].goals+f[i+1].score;
if (f[i].score>f[i+1].score)
{
f[i].points=f[i].points+3;
}
else if(f[i].score<f[i+1].score)
{
f[i+1].points=f[i+1].points+3;
}
else
{
f[i].points=f[i].points+1;
f[i+1].points=f[i+1].points+1;
}
}
}
printf("\n");
printf("Club Name\tNation\tRank\tPlayed\tGoals For\tPoints\n");
for (i=0; i<10; i++)
{
printf("%s\t%s\t%d\t%d\t%d\t\t%d\n",f[i].name,f[i].nation,f[i].ranking,played=2,f[i].goals,f[i].points);
}
printf("\n");
printf("\t\t\tRound 2\n");
printf("\t\t\tMatches List:\n");
printf("Enter the Scores:");
printf("%s-%s:",f[9].name,f[0].name);
scanf("%d", &f[9].score);
f[9].goals=f[9].goals+f[9].score;
printf("-");
scanf("%d", &f[0].score);
f[0].goals=f[0].goals+f[0].score;
if (f[9].score>f[0].score)
{
f[9].points=f[9].points+3;
}
else if(f[9].score<f[0].score)
{
f[0].points=f[0].points+3;
}
else
{
f[9].points=f[9].points+1;
f[0].points=f[0].points+1;
}
printf("Do You Want To Sim Matches(Y/N):");
scanf("%s", &choice);
if (choice=='Y' || choice=='y')
{
for (i=9; i>0; i--)
{
printf("Enter the Scores:");
printf("%s-%s:",f[i].name,f[i-1].name);
f[i].score=1+rand()%9;
f[i].goals=f[i].goals+f[i].score;
printf("-");
f[i-1].score=1+rand()%9;
f[i-1].goals=f[i-1].goals+f[i-1].score;
if (f[i].score>f[i-1].score)
{
f[i].points=f[i].points+3;
}
else if(f[i].score<f[i-1].score)
{
f[i-1].points=f[i-1].points+3;
}
else
{
f[i].points=f[i].points+1;
f[i-1].points=f[i-1].points+1;
}
}
}
else if(choice=='N' || choice=='n')
{
for (i=9; i>0; i--)
{
printf("Enter the Scores:");
printf("%s-%s:",f[i].name,f[i-1].name);
scanf("%d", &f[i].score);
f[i].goals=f[i].goals+f[i].score;
printf("-");
scanf("%d", &f[i-1].score);
f[i-1].goals=f[i-1].goals+f[i-1].score;
if (f[i].score>f[i-1].score)
{
f[i].points=f[i].points+3;
}
else if(f[i].score<f[i-1].score)
{
f[i-1].points=f[i-1].points+3;
}
else
{
f[i].points=f[i].points+1;
f[i-1].points=f[i-1].points+1;
}
}
}
printf("\n");
printf("Club Name\tNation\tRank\tPlayed\tGoals For\tPoints\n");
for (i=0; i<10; i++)
{
printf("%s\t%s\t%d\t%d\t%d\t\t%d\n",f[i].name,f[i].nation,f[i].ranking,played=4,f[i].goals,f[i].points);
}
// sorting
for (i=0; i<9; i++)
{
for (j=i+1; j<10; j++)
{
if(f[i].points<f[j].points)
{
struct football temp=f[i];
f[i]=f[j];
f[j]=temp;
}
}
}
printf("\n");
printf("Club Name\tNation\tRank\tPlayed\tGoals For\tPoints\n");
for (i=0; i<10; i++)
{
printf("%s\t%s\t%d\t%d\t%d\t\t%d\n",f[i].name,f[i].nation,i+1,played=4,f[i].goals,f[i].points);
}
// Semi-Finals 1
printf("\n");
printf("These 4 Teams Advances to the Finals\n");
printf("All The Listed Games Will Be Played On Wemblhy Stadium & is 1 Legged Match\n");
printf("Club Name\tNation\n");
for (i=0; i<4; i++)
{
printf("%s\t%s\n",f[i].name,f[i].nation);
}
printf("Enter the Scores:");
printf("%s-%s:",f[0].name,f[3].name);
scanf("%d", &f[0].score);
f[0].goals=f[0].goals+f[0].score;
printf("-");
scanf("%d", &f[3].score);
f[3].goals=f[3].goals+f[3].score;
if (f[0].score>f[3].score)
{
printf("Team %s Advances to the Finals\n", f[0].name);
f[0].point1=f[0].point1+3;
}
else if(f[0].score<f[3].score)
{
printf("Team %s Advances to the Finals\n", f[3].name);
f[3].point1=f[3].point1+3;
}
else
{
printf("Play Again\n");
printf("Enter the Scores:");
printf("%s-%s:",f[0].name,f[3].name);
scanf("%d", &f[0].score);
f[0].goals=f[0].goals+f[0].score;
printf("-");
scanf("%d", &f[3].score);
f[3].goals=f[3].goals+f[3].score;
if (f[0].score>f[3].score)
{
printf("Team %s Advances to the Finals\n", f[0].name);
f[0].point1=f[0].point1+3;
}
else if(f[0].score<f[3].score)
{
printf("Team %s Advances to the Finals\n", f[3].name);
f[3].point1=f[3].point1+3;
}
}
printf("\n");
//Semi-Final 2
printf("Enter the Scores:");
printf("%s-%s:",f[1].name,f[2].name);
scanf("%d", &f[1].score);
f[1].goals=f[1].goals+f[1].score;
printf("-");
scanf("%d", &f[2].score);
f[2].goals=f[2].goals+f[2].score;
if (f[1].score>f[2].score)
{
printf("Team %s Also Advances to the Finals\n", f[1].name);
f[1].point1=f[1].point1+3;
}
else if(f[1].score<f[2].score)
{
printf("Team %s Also Advances to the Finals\n", f[2].name);
f[2].point1=f[2].point1+3;
}
else
{
printf("Play Again\n");
printf("Enter the Scores:");
printf("%s-%s:",f[1].name,f[2].name);
scanf("%d", &f[1].score);
f[1].goals=f[1].goals+f[1].score;
printf("-");
scanf("%d", &f[2].score);
f[2].goals=f[2].goals+f[2].score;
if (f[1].score>f[2].score)
{
printf("Team %s Also Advances to the Finals\n", f[1].name);
f[1].point1=f[1].point1+3;
}
else if(f[1].score<f[2].score)
{
printf("Team %s Also Advances to the Finals\n", f[2].name);
f[2].point1=f[2].point1+3;
}
}
printf("\n");
printf("\t\t\tThe Finals\n");
printf("The Finals Will be Played in the Santiago Bernabeu\n");
if (f[0].point1>f[3].point1 && f[1].point1>f[2].point1)
{
printf("Enter the Scores:");
printf("%s-%s:",f[0].name,f[1].name);
scanf("%d", &f[0].score);
f[0].goals=f[0].goals+f[0].score;
printf("-");
scanf("%d", &f[1].score);
f[1].goals=f[1].goals+f[1].score;
if (f[0].score>f[1].score)
{
printf("The Winner is Team %s. ConGraLuaTion!!", f[0].name);
}
else
{
printf("The Winner is Team %s. ConGraLuaTion!!", f[1].name);
}
}
else if (f[3].point1>f[0].point1 && f[2].point1>f[1].point1)
{
printf("Enter the Scores:");
printf("%s-%s:",f[3].name,f[2].name);
scanf("%d", &f[3].score);
f[3].goals=f[3].goals+f[3].score;
printf("-");
scanf("%d", &f[2].score);
f[2].goals=f[2].goals+f[2].score;
if (f[3].score>f[2].score)
{
printf("The Winner is Team %s. ConGraLuaTion!!", f[3].name);
}
else
{
printf("The Winner is Team %s. ConGraLuaTion!!", f[2].name);
}
}
else if (f[0].point1>f[3].point1 && f[2].point1>f[1].point1)
{
printf("Enter the Scores:");
printf("%s-%s:",f[0].name,f[2].name);
scanf("%d", &f[0].score);
f[0].goals=f[0].goals+f[0].score;
printf("-");
scanf("%d", &f[2].score);
f[2].goals=f[2].goals+f[2].score;
if (f[0].score>f[2].score)
{
printf("The Winner is Team %s. ConGraLuaTion!!", f[0].name);
}
else
{
printf("The Winner is Team %s. ConGraLuaTion!!", f[2].name);
}
}
else if (f[3].point1>f[0].point1 && f[1].point1>f[2].point1)
{
printf("Enter the Scores:");
printf("%s-%s:",f[3].name,f[1].name);
scanf("%d", &f[3].score);
f[3].goals=f[3].goals+f[3].score;
printf("-");
scanf("%d", &f[1].score);
f[1].goals=f[1].goals+f[1].score;
if (f[3].score>f[1].score)
{
printf("The Winner is Team %s. ConGraLuaTion!!", f[3].name);
}
else
{
printf("The Winner is Team %s. ConGraLuaTion!!", f[1].name);
}
}
getch();
return 0;
}