-
Notifications
You must be signed in to change notification settings - Fork 1
/
2031.c
62 lines (49 loc) · 1.37 KB
/
2031.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
#include<stdio.h>
#include<string.h>
int main()
{
int n, i;
char str1[20], str2[20];
scanf("%d", &n);
for(i=1; i<=n; i++)
{
scanf("%s %s", str1, str2);
if(strcmp(str1, "ataque")==0 && strcmp(str2, "ataque")==0)
{
printf("Aniquilacao mutua\n");
}
else if(strcmp(str1, "pedra")==0 && strcmp(str2, "pedra")==0)
{
printf("Sem ganhador\n");
}
else if(strcmp(str1, "papel")==0 && strcmp(str2, "papel")==0)
{
printf("Ambos venceram\n");
}
else if(strcmp(str1, "papel")==0 && strcmp(str2, "ataque")==0)
{
printf("Jogador 2 venceu\n");
}
else if(strcmp(str1, "ataque")==0 && strcmp(str2, "papel")==0)
{
printf("Jogador 1 venceu\n");
}
else if(strcmp(str1, "pedra")==0 && strcmp(str2, "papel")==0)
{
printf("Jogador 1 venceu\n");
}
else if(strcmp(str1, "papel")==0 && strcmp(str2, "pedra")==0)
{
printf("Jogador 2 venceu\n");
}
else if(strcmp(str1, "ataque")==0 && strcmp(str2, "pedra")==0)
{
printf("Jogador 1 venceu\n");
}
else if(strcmp(str1, "pedra")==0 && strcmp(str2, "ataque")==0)
{
printf("Jogador 2 venceu\n");
}
}
return 0;
}