-
Notifications
You must be signed in to change notification settings - Fork 10
/
2031.c
31 lines (30 loc) · 911 Bytes
/
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
#include <stdio.h>
int main() {
int n;
char j1[10], j2[10];
scanf("%d", &n);
do {
scanf("%s", &j1);
scanf("%s", &j2);
if (j1[1] == 't' && j2[1] == 'e') {
printf("Jogador 1 venceu\n");
} else if (j1[1] == 'e' && j2[1] == 't') {
printf("Jogador 2 venceu\n");
} else if (j1[1] == 'e' && j2[1] == 'a') {
printf("Jogador 1 venceu\n");
} else if (j1[1] == 'a' && j2[1] == 'e') {
printf("Jogador 2 venceu\n");
} else if (j1[1] == 'a' && j2[1] == 't') {
printf("Jogador 2 venceu\n");
} else if (j1[1] == 't' && j2[1] == 'a') {
printf("Jogador 1 venceu\n");
} else if (j1[1] == 'a' && j2[1] == 'a') {
printf("Ambos venceram\n");
} else if (j1[1] == 'e' && j2[1] == 'e') {
printf("Sem ganhador\n");
} else if (j1[1] == 't' && j2[1] == 't') {
printf("Aniquilacao mutua\n");
}
} while(--n != 0);
return 0;
}