-
Lenguaje
C
-
Descripción
Una persona adquirió un producto para pagar en 20 meses. El primer mes pagó $10, el segundo $20, el tercero $40 y así sucesivamente. Realice un algoritmo para determinar cuánto debe pagar mensualmente y el total de lo que pagó después de los 20 meses.
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)
{
int i;
float pago, total;
total = 0;
for (i=1; i<=20; i++)
{
printf ("PROCESO %d\n", i);
if(i==1)
pago=10;
else
pago=pago*2;
total=total+pago;
printf ("Valor de pago: %g\n", pago);
putchar ('\n');
}
printf ("Valor de total: %f\n", total);
system ("pause");
return EXIT_SUCCESS;
}
#include <stdlib.h>
int main (void)
{
int i;
float pago, total;
total = 0;
for (i=1; i<=20; i++)
{
printf ("PROCESO %d\n", i);
if(i==1)
pago=10;
else
pago=pago*2;
total=total+pago;
printf ("Valor de pago: %g\n", pago);
putchar ('\n');
}
printf ("Valor de total: %f\n", total);
system ("pause");
return EXIT_SUCCESS;
}