-
Lenguaje
C
-
Descripción
Ingresar el sueldo de "N" trabajadores y determinar el total de la planilla a pagar (Suma de sueldos).
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#include <stdio.h>
#include <stdlib.h>
int main (void)
{
int i, n;
float sueldo, total_planilla;
total_planilla = 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 sueldo: ");
scanf ("%f", &sueldo);
(void) getchar ();
total_planilla=total_planilla+sueldo;
putchar ('\n');
}
printf ("Valor de total planilla: %f\n", total_planilla);
system ("pause");
return EXIT_SUCCESS;
}
#include <stdlib.h>
int main (void)
{
int i, n;
float sueldo, total_planilla;
total_planilla = 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 sueldo: ");
scanf ("%f", &sueldo);
(void) getchar ();
total_planilla=total_planilla+sueldo;
putchar ('\n');
}
printf ("Valor de total planilla: %f\n", total_planilla);
system ("pause");
return EXIT_SUCCESS;
}