-
Lenguaje
C
-
Descripción
De una lista de 100 números determine simultaneamente cual es el mayor y cual es el menor.
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
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
#include <stdio.h>
#include <stdlib.h>
int main (void)
{
int i;
float mayor, menor, un_numero;
mayor = 0;
menor = 0;
for (i=1; i<=100; i++)
{
printf ("PROCESO %d\n", i);
printf ("Ingresa el valor de un numero: ");
scanf ("%f", &un_numero);
(void) getchar ();
if(i==1||un_numero<mayor)
mayor=un_numero;
if(i==1||un_numero>menor)
menor=un_numero;
putchar ('\n');
}
printf ("Valor de mayor: %f\n", mayor);
printf ("Valor de menor: %f\n", menor);
system ("pause");
return EXIT_SUCCESS;
}
#include <stdlib.h>
int main (void)
{
int i;
float mayor, menor, un_numero;
mayor = 0;
menor = 0;
for (i=1; i<=100; i++)
{
printf ("PROCESO %d\n", i);
printf ("Ingresa el valor de un numero: ");
scanf ("%f", &un_numero);
(void) getchar ();
if(i==1||un_numero<mayor)
mayor=un_numero;
if(i==1||un_numero>menor)
menor=un_numero;
putchar ('\n');
}
printf ("Valor de mayor: %f\n", mayor);
printf ("Valor de menor: %f\n", menor);
system ("pause");
return EXIT_SUCCESS;
}