-
Lenguaje
C
-
Descripción
La Empresa Makro S.A., desea obtener el impuesto general a las ventas (IGV) de la venta total realizada. Obtener el IGV de la venta total.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include <stdio.h>
#include <stdlib.h>
int main (void)
{
float IGV, porcentaje_de_IGV, venta_total;
printf ("Ingresa el valor de porcentaje de IGV: ");
scanf ("%f", &porcentaje_de_IGV);
(void) getchar ();
printf ("Ingresa el valor de venta total: ");
scanf ("%f", &venta_total);
(void) getchar ();
IGV=venta_total*porcentaje_de_IGV/100;
printf ("Valor de IGV: %g\n", IGV);
putchar ('\n');
system ("pause");
return EXIT_SUCCESS;
}
#include <stdlib.h>
int main (void)
{
float IGV, porcentaje_de_IGV, venta_total;
printf ("Ingresa el valor de porcentaje de IGV: ");
scanf ("%f", &porcentaje_de_IGV);
(void) getchar ();
printf ("Ingresa el valor de venta total: ");
scanf ("%f", &venta_total);
(void) getchar ();
IGV=venta_total*porcentaje_de_IGV/100;
printf ("Valor de IGV: %g\n", IGV);
putchar ('\n');
system ("pause");
return EXIT_SUCCESS;
}