-
Linguagem
C
-
Descrição
Solicita ao usuário números dos alunos, a nota de cada um deles, e informar, ao usuário o melhor aluno e a sua nota.
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
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#include <stdio.h>
#include <stdlib.h>
int main (void)
{
int i, n;
float melhor_nota, nota;
melhor_nota = 0;
printf ("Digite o valor do n: ");
scanf ("%d", &n);
(void) getchar ();
for (i=1; i<=n; i++)
{
printf ("PROCESSO %d\n", i);
printf ("Digite o valor do nota: ");
scanf ("%f", ¬a);
(void) getchar ();
if(i==1||nota<melhor_nota)
melhor_nota=nota;
putchar ('\n');
}
printf ("O valor do melhor nota: %f\n", melhor_nota);
system ("pause");
return EXIT_SUCCESS;
}
#include <stdlib.h>
int main (void)
{
int i, n;
float melhor_nota, nota;
melhor_nota = 0;
printf ("Digite o valor do n: ");
scanf ("%d", &n);
(void) getchar ();
for (i=1; i<=n; i++)
{
printf ("PROCESSO %d\n", i);
printf ("Digite o valor do nota: ");
scanf ("%f", ¬a);
(void) getchar ();
if(i==1||nota<melhor_nota)
melhor_nota=nota;
putchar ('\n');
}
printf ("O valor do melhor nota: %f\n", melhor_nota);
system ("pause");
return EXIT_SUCCESS;
}