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