32 lines
660 B
C
32 lines
660 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
/* Incremento de salario.
|
|
El programa, al recibir como dato el nivel de un profesor, incrementa su
|
|
➥salario en función de la tabla 2.3.
|
|
|
|
NIV: variable de tipo entero.
|
|
SAL: variables de tipo real. */
|
|
|
|
void main(void)
|
|
{
|
|
float SAL;
|
|
int NIV;
|
|
printf("Ingrese el nivel academico del profesor: ");
|
|
scanf("%i", &NIV);
|
|
|
|
printf("ingrese el salario: ");
|
|
scanf("%f", &SAL);
|
|
|
|
switch (NIV)
|
|
{
|
|
case 1: SAL = SAL * 1.0035; break;
|
|
case 2: SAL = SAL * 1.0041; break;
|
|
case 3: SAL = SAL * 1.0048; break;
|
|
case 4: SAL = SAL * 1.0053; break;
|
|
}
|
|
printf("\n\nNivel: %d \tNuevo salario: %.2f\n", NIV, SAL);
|
|
|
|
system("pause");
|
|
}
|