-
Lenguaje
C
-
Descripción
Calcular la cantidad de dinero que ahorrara una persona en un un plazo de 2 años, obteniendo una tasa de interés del 4% bimestral. Debe leerse la cantidad a ahorrar mensualmente.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#include <stdio.h>
#include <stdlib.h>
int main (void)
{
int i;
float ahorro_acumulado, ahorro_bimestre, ahorro_mensual, intereses;
ahorro_acumulado = 0;
ahorro_bimestre = 0;
for (i=1; i<=24; i++)
{
printf ("PROCESO %d\n", i);
printf ("Ingresa el valor de ahorro mensual: ");
scanf ("%f", &ahorro_mensual);
(void) getchar ();
ahorro_bimestre=ahorro_bimestre+ahorro_mensual;
if(i%2==0)
{
intereses=ahorro_acumulado*0.04;
ahorro_acumulado=ahorro_acumulado+ahorro_bimestre+intereses;
ahorro_bimestre=0;
}
printf ("Valor de intereses: %g\n", intereses);
putchar ('\n');
}
printf ("Valor de ahorro acumulado: %f\n", ahorro_acumulado);
printf ("Valor de ahorro bimestre: %f\n", ahorro_bimestre);
system ("pause");
return EXIT_SUCCESS;
}
#include <stdlib.h>
int main (void)
{
int i;
float ahorro_acumulado, ahorro_bimestre, ahorro_mensual, intereses;
ahorro_acumulado = 0;
ahorro_bimestre = 0;
for (i=1; i<=24; i++)
{
printf ("PROCESO %d\n", i);
printf ("Ingresa el valor de ahorro mensual: ");
scanf ("%f", &ahorro_mensual);
(void) getchar ();
ahorro_bimestre=ahorro_bimestre+ahorro_mensual;
if(i%2==0)
{
intereses=ahorro_acumulado*0.04;
ahorro_acumulado=ahorro_acumulado+ahorro_bimestre+intereses;
ahorro_bimestre=0;
}
printf ("Valor de intereses: %g\n", intereses);
putchar ('\n');
}
printf ("Valor de ahorro acumulado: %f\n", ahorro_acumulado);
printf ("Valor de ahorro bimestre: %f\n", ahorro_bimestre);
system ("pause");
return EXIT_SUCCESS;
}