-
Lenguaje
C
-
Descripción
Un banco otorga un préstamo a sus clientes. Si estos tienen una edad entre 25 años y 50 años, el interés que cobra por el préstamo es del 10% ¿Cuánto deberá pagar el cliente al banco por el préstamo solicitado?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include <stdio.h>
#include <stdlib.h>
int main (void)
{
float edad, interes, pago, prestamo;
printf ("Ingresa el valor de edad: ");
scanf ("%f", &edad);
(void) getchar ();
printf ("Ingresa el valor de prestamo: ");
scanf ("%f", &prestamo);
(void) getchar ();
if(edad>=25&&edad<=50)
interes=prestamo*0.1;
else
interes=0;
pago=prestamo+interes;
printf ("Valor de interes: %g\n", interes);
printf ("Valor de pago: %g\n", pago);
putchar ('\n');
system ("pause");
return EXIT_SUCCESS;
}
#include <stdlib.h>
int main (void)
{
float edad, interes, pago, prestamo;
printf ("Ingresa el valor de edad: ");
scanf ("%f", &edad);
(void) getchar ();
printf ("Ingresa el valor de prestamo: ");
scanf ("%f", &prestamo);
(void) getchar ();
if(edad>=25&&edad<=50)
interes=prestamo*0.1;
else
interes=0;
pago=prestamo+interes;
printf ("Valor de interes: %g\n", interes);
printf ("Valor de pago: %g\n", pago);
putchar ('\n');
system ("pause");
return EXIT_SUCCESS;
}