-
Lenguaje
C
-
Descripción
Algoritmo que permita realizar ventas al crédito, se ingresará el importe de la venta y el número de cuotas. Calcular y visualizar la inicial que es el 15%, monto financiado, importe de intereses, importe de cuota y total a pagar.
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)
{
float cuota_inicial, importe_de_cuota, importe_de_intereses, importe_de_la_venta, monto_financiado;
float numero_de_cuotas, tasa_de_interes, total_a_pagar;
printf ("Ingresa el valor de importe de la venta: ");
scanf ("%f", &importe_de_la_venta);
(void) getchar ();
printf ("Ingresa el valor de numero de cuotas: ");
scanf ("%f", &numero_de_cuotas);
(void) getchar ();
printf ("Ingresa el valor de tasa de interes: ");
scanf ("%f", &tasa_de_interes);
(void) getchar ();
cuota_inicial=importe_de_la_venta*0.15;
monto_financiado=importe_de_la_venta-cuota_inicial;
importe_de_intereses=monto_financiado*tasa_de_interes/100;
importe_de_cuota=(monto_financiado+importe_de_intereses)/numero_de_cuotas;
total_a_pagar=cuota_inicial+monto_financiado+importe_de_intereses;
printf ("Valor de cuota inicial: %g\n", cuota_inicial);
printf ("Valor de importe de cuota: %g\n", importe_de_cuota);
printf ("Valor de importe de intereses: %g\n", importe_de_intereses);
printf ("Valor de monto financiado: %g\n", monto_financiado);
printf ("Valor de total a pagar: %g\n", total_a_pagar);
putchar ('\n');
system ("pause");
return EXIT_SUCCESS;
}
#include <stdlib.h>
int main (void)
{
float cuota_inicial, importe_de_cuota, importe_de_intereses, importe_de_la_venta, monto_financiado;
float numero_de_cuotas, tasa_de_interes, total_a_pagar;
printf ("Ingresa el valor de importe de la venta: ");
scanf ("%f", &importe_de_la_venta);
(void) getchar ();
printf ("Ingresa el valor de numero de cuotas: ");
scanf ("%f", &numero_de_cuotas);
(void) getchar ();
printf ("Ingresa el valor de tasa de interes: ");
scanf ("%f", &tasa_de_interes);
(void) getchar ();
cuota_inicial=importe_de_la_venta*0.15;
monto_financiado=importe_de_la_venta-cuota_inicial;
importe_de_intereses=monto_financiado*tasa_de_interes/100;
importe_de_cuota=(monto_financiado+importe_de_intereses)/numero_de_cuotas;
total_a_pagar=cuota_inicial+monto_financiado+importe_de_intereses;
printf ("Valor de cuota inicial: %g\n", cuota_inicial);
printf ("Valor de importe de cuota: %g\n", importe_de_cuota);
printf ("Valor de importe de intereses: %g\n", importe_de_intereses);
printf ("Valor de monto financiado: %g\n", monto_financiado);
printf ("Valor de total a pagar: %g\n", total_a_pagar);
putchar ('\n');
system ("pause");
return EXIT_SUCCESS;
}