-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbeecrowd_1329.c
47 lines (37 loc) · 938 Bytes
/
beecrowd_1329.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
/*
Universidade de Brasília
Departamento de Ciência da Computação
CIC0004 - Algoritmos e Programação de Computadores
Prof. Dr. Vinícius R. P. Borges
Tópico: Estruturas de Repeticao
Objetivo: Solução do problema beecrowd 1329 - Head or Tail (Maratona SBC de Programação 2004)
https://www.beecrowd.com.br/judge/pt/problems/view/1329
Comandos no Terminal do Linux para compilar e executar o codigo-fonte:
gcc beecrowd_1329.c -o ht
./ht
*/
#include <stdio.h>
void solve_test_case(int n){
int i,ri,mary,john;
mary = 0;
john = 0;
for(i = 0; i < n;i++){
scanf("%d",&ri);
if(ri == 0){
mary++;
}
else{
john++;
}
}
printf("Mary won %d times and John won %d times\n",mary,john);
}
int main(){
int x;
scanf("%d",&x);
while(x != 0){
solve_test_case(x);
scanf("%d",&x);
}
return 0;
}