• Lenguaje

    C

  • Descripción

    Permita leer las cantidades y los precios de 10 productos y permita saber cuanto debe pagar el cliente si el IVA es del 19% y tiene un descuento final del 2%. Al final muestre el valor a pagar por IVA y el valor 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
36
#include <stdio.h>
#include <stdlib.h>

int main (void)
{
    int i;
    float IVA, cantidad_de_productos, descuento, importe, precio_del_producto;
    float subtotal, total_a_pagar;
    descuento = 0;
    IVA = 0;
    subtotal = 0;
    total_a_pagar = 0;
    for (i=1; i<=10; i++)
    {
        printf ("PROCESO %d\n", i);
        printf ("Ingresa el valor de cantidad de productos: ");
        scanf ("%f", &cantidad_de_productos);
        (void) getchar ();
        printf ("Ingresa el valor de precio del producto: ");
        scanf ("%f", &precio_del_producto);
        (void) getchar ();
        importe=cantidad_de_productos*precio_del_producto;
        subtotal=subtotal+importe;
        printf ("Valor de importe: %g\n", importe);
        putchar ('\n');
    }
    descuento=subtotal*0.02;
    IVA=(subtotal-descuento)*0.19;
    total_a_pagar=subtotal-descuento+IVA;
    printf ("Valor de descuento: %f\n", descuento);
    printf ("Valor de IVA: %f\n", IVA);
    printf ("Valor de subtotal: %f\n", subtotal);
    printf ("Valor de total a pagar: %f\n", total_a_pagar);
    system ("pause");
    return EXIT_SUCCESS;
}