• Lenguaje

    C

  • Descripción

    Ingresar el precio y la cantidad para dos productos. Mostrar el importe por cada producto, el subtotal de los importes, el IGV (18%), el descuento (5%) y el 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
31
32
33
34
35
#include <stdio.h>
#include <stdlib.h>

int main (void)
{
    float IGV, costpo_producto_A, costpo_producto_B, descuento, importe_producto_A;
    float importe_producto_B, precio_producto_A, precio_producto_B, subtotal, total;
    printf ("Ingresa el valor de costpo producto A: ");
    scanf ("%f", &costpo_producto_A);
    (void) getchar ();
    printf ("Ingresa el valor de costpo producto B: ");
    scanf ("%f", &costpo_producto_B);
    (void) getchar ();
    printf ("Ingresa el valor de precio producto A: ");
    scanf ("%f", &precio_producto_A);
    (void) getchar ();
    printf ("Ingresa el valor de precio producto B: ");
    scanf ("%f", &precio_producto_B);
    (void) getchar ();
    importe_producto_A=costpo_producto_A*precio_producto_A;
    importe_producto_B=costpo_producto_B*precio_producto_B;
    subtotal=importe_producto_A+importe_producto_B;
    descuento=subtotal*0.05;
    IGV=(subtotal-descuento)*0.18;
    total=subtotal-descuento+IGV;
    printf ("Valor de IGV: %g\n", IGV);
    printf ("Valor de descuento: %g\n", descuento);
    printf ("Valor de importe producto A: %g\n", importe_producto_A);
    printf ("Valor de importe producto B: %g\n", importe_producto_B);
    printf ("Valor de subtotal: %g\n", subtotal);
    printf ("Valor de total: %g\n", total);
    putchar ('\n');
    system ("pause");
    return EXIT_SUCCESS;
}