-
Lenguaje
C
-
Descripción
Se les dará un bono por antigüedad a los empleados de una tienda. Si tienen un año, se les dará $100; si tienen 2 años, $200, y así sucesivamente hasta los 5 años. Para los que tengan más de 5, el bono será de $1000. Realice un programa que permita determinar el bono que recibirá un trabajador.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include <stdio.h>
#include <stdlib.h>
int main (void)
{
int antiguedad, bono;
printf ("Ingresa el valor de antiguedad: ");
scanf ("%d", &antiguedad);
(void) getchar ();
if(antiguedad<=5)
bono=antiguedad*100;
else
bono=1000;
printf ("Valor de bono: %d\n", bono);
putchar ('\n');
system ("pause");
return EXIT_SUCCESS;
}
#include <stdlib.h>
int main (void)
{
int antiguedad, bono;
printf ("Ingresa el valor de antiguedad: ");
scanf ("%d", &antiguedad);
(void) getchar ();
if(antiguedad<=5)
bono=antiguedad*100;
else
bono=1000;
printf ("Valor de bono: %d\n", bono);
putchar ('\n');
system ("pause");
return EXIT_SUCCESS;
}