-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtenis maçı.c
137 lines (120 loc) · 2.28 KB
/
tenis maçı.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
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
#include <stdio.h>
#include <stdlib.h>
#include <conio.h>
#include <time.h>
int main ()
{
int N,a,i,k,b,c;
char oyuncu1[10],oyuncu2[10];
printf("oyuncu1 ismi = ");
scanf("%s",&oyuncu1);
printf("oyuncu2 ismi = ");
scanf("%s",&oyuncu2);
srand(time(NULL));
while(a!=1)
{
printf("set sayisini giriniz.(3 veya 5)\n");
scanf("%d",&N);
if((N==3) || (N==5))
a=1;
}
int set1=0,set2=0,oyun1,oyun2,sayi1,sayi2;
for(i=1;i<=N;i++)
{
printf("%d. set basladi..\n",i);
oyun1=0;
oyun2=0;
c=0;
while(c!=1)
{
sayi1=0;
sayi2=0;
b=0;
while(b!=1)
{
k=rand()%2;
if(k==0)
{
sayi1=sayi1+1;
}
else
{
sayi2=sayi2+1;
}
if((sayi1==4) && (sayi2==4))
{
sayi1--;
sayi2--;
}
if(sayi1==4)
{
if(sayi2<3)
{
sayi1=5;
}
}
if(sayi2==4)
{
if(sayi1<3)
{
sayi2=5;
}
}
if((sayi1==5) || (sayi2==5))
{
b=1;
}
switch(sayi1)
{
case 0: printf("%s 0 - ",oyuncu1);break;
case 1: printf("%s 15 - ",oyuncu1);break;
case 2: printf("%s 30 - ",oyuncu1);break;
case 3: printf("%s 40 - ",oyuncu1);break;
case 4: printf("%s A - ",oyuncu1);break;
case 5: printf("%s OYUN ",oyuncu1);break;
}
switch(sayi2)
{
case 0: printf("%s 0\n",oyuncu2);break;
case 1: printf("%s 15\n",oyuncu2);break;
case 2: printf("%s 30\n",oyuncu2);break;
case 3: printf("%s 40\n",oyuncu2);break;
case 4: printf("%s A\n",oyuncu2);break;
case 5: printf("%s OYUN\n",oyuncu2);break;
}
}
if(sayi1>sayi2)
{
oyun1=oyun1+1;
}
else
{
oyun2=oyun2+1;
}
if(((oyun1>=6) && (oyun1-oyun2>=2)) || ((oyun2>=6) && (oyun2-oyun1>=2)))
{
c=1;
}
}
if((oyun1-oyun2>=2) || (oyun1==7))
{
printf(" %d. seti %s kazandi!\n",i,oyuncu1);
set1++;
}
else
{
printf(" %d. seti %s kazandi!\n",i,oyuncu2);
set2++;
}
printf("%d-%d\n",oyun1,oyun2);
}
if(set1>set2)
{
printf(" %s OYUNU KAZANDI!",oyuncu1);
}
else
{
printf(" %s OYUNU KAZANDI!", oyuncu2);
}
return 0;
}