-
Notifications
You must be signed in to change notification settings - Fork 0
/
Atividade07_Aeroporto.c
55 lines (50 loc) · 1.31 KB
/
Atividade07_Aeroporto.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
#include <stdio.h>
#include <stdlib.h>
int main()
{
//DECLARACOES:
int aeroportos[101], A=1, V=1, localSaida, localDestino, maior=0, maiorIndice=0, teste=0;
int i, j;
//MAIN:
//Recebimento de dados:
scanf("%d %d", &A, &V);
while(A!=0 || V!=0){
for (i = 0; i < 101; i++) {aeroportos[i]=0;}
teste++;
for (i = 1; i <= V; i++)
{
scanf("%d %d", &localSaida, &localDestino);
aeroportos[localSaida]++;
aeroportos[localDestino]++;
}
//Teste 1, encontrando o primeiro maior fluxo de trafego
if(teste == 1)
{
for (j = 1; j <= A; j++)
{
if(maior < aeroportos[j])
{
maior = aeroportos[j];
maiorIndice = j;
}
}
//Saida:
printf("Teste %d\n", teste);
printf("%d\n\n", maiorIndice);
}else
{
//Saida:
printf("Teste %d\n", teste);
for (j = 1; j <= A; j++)
{
if(maior == aeroportos[j])
{
printf("%d ", j);
}
}
printf("\n\n");
}
scanf("%d %d", &A, &V);
}
return 0;
}