-
Lenguaje
C
-
Descripción
Sumar 100 números leídos por teclado.
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;
float suma, un_numero;
suma = 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 ();
suma=suma+un_numero;
putchar ('\n');
}
printf ("Valor de suma: %f\n", suma);
system ("pause");
return EXIT_SUCCESS;
}
#include <stdlib.h>
int main (void)
{
int i;
float suma, un_numero;
suma = 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 ();
suma=suma+un_numero;
putchar ('\n');
}
printf ("Valor de suma: %f\n", suma);
system ("pause");
return EXIT_SUCCESS;
}