• Lenguaje

    PSeInt (Pseudocódigo)

  • Descripción

    Leer un monto a pagar y aplicar un descuento de 4% y luego el 18% de IGV.

1
2
3
4
5
6
7
8
9
10
11
12
Proceso DescuentoEIgv
    Escribir Sin Saltar "Ingresa el valor de monto a pagar:";
    Leer monto_a_pagar;
    descuento <- monto_a_pagar*0.04;
    subtotal <- monto_a_pagar-descuento;
    IGV <- subtotal*0.18;
    total <- subtotal+IGV;
    Escribir "Valor de IGV: ", IGV;
    Escribir "Valor de descuento: ", descuento;
    Escribir "Valor de subtotal: ", subtotal;
    Escribir "Valor de total: ", total;
FinProceso