-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcaracoroa.c
68 lines (51 loc) · 1.38 KB
/
caracoroa.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
#include <stdio.h>
#include <stdlib.h>
int main() {
int maria;
int joao;
int maria_total;
int maria_vitorias;
int joao_total;
int joao_vitorias;
int rodadas, resultados;
int i;
int abortar = 0;
do {
do {
printf("Digite o número de rodadas:\n");
scanf("%d", &rodadas);
abortar = 0;
maria = 0;
joao = 0;
for(i = 0; i < rodadas; i++) {
if(abortar == 0) {
printf("Digite o resultado da rodada:\n");
scanf("%d", &resultados);
switch (resultados) {
case 0:
maria++;
maria_vitorias++;
break;
case 1:
joao++;
joao_vitorias++;
break;
default:
printf("Rodada Abortada! tente novamente.\n");
abortar = 1;
break;
}
}
}
if(rodadas == 0) {
printf("Ninguém jogou!\n");
}
if (abortar == 0) {
printf("Maria venceu %d vez(es) e João venceu %d vez(es)\n", maria, joao);
}
joao_total =+ joao_vitorias;
maria_total =+ maria_vitorias;
printf("Ao longo dos anos, Maria venceu %d vez(es) e João venceu %d vez(es)\n", maria_total, joao_total);
}while(rodadas != 0);
}while (abortar == 0);
}