• Lenguaje

    PSeInt (Pseudocódigo)

  • Descripción

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

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