-
Lenguaje
C
-
Descripción
Pida al usuario 7 números enteros, calcule y muestre cuál es el mayor de ellos.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include <stdio.h>
#include <stdlib.h>
int main (void)
{
int i, mayor, un_numero;
mayor = 0;
for (i=1; i<=7; i++)
{
printf ("PROCESO %d\n", i);
printf ("Ingresa el valor de un numero: ");
scanf ("%d", &un_numero);
(void) getchar ();
if(i==1||mayor<un_numero)
mayor=un_numero;
putchar ('\n');
}
printf ("Valor de mayor: %d\n", mayor);
system ("pause");
return EXIT_SUCCESS;
}
#include <stdlib.h>
int main (void)
{
int i, mayor, un_numero;
mayor = 0;
for (i=1; i<=7; i++)
{
printf ("PROCESO %d\n", i);
printf ("Ingresa el valor de un numero: ");
scanf ("%d", &un_numero);
(void) getchar ();
if(i==1||mayor<un_numero)
mayor=un_numero;
putchar ('\n');
}
printf ("Valor de mayor: %d\n", mayor);
system ("pause");
return EXIT_SUCCESS;
}