-
Lenguaje
PSeInt (Pseudocódigo)
-
Descripción
Calcule el monto a pagar de un artículo, si se conoce la cantidad y precio del artículo. Además se le aplica el IGV del 19%.
1
2
3
4
5
6
7
8
9
10
11
12
2
3
4
5
6
7
8
9
10
11
12
Proceso IgvDe19
Escribir Sin Saltar "Ingresa el valor de cantidad:";
Leer cantidad;
Escribir Sin Saltar "Ingresa el valor de precio del articulo:";
Leer precio_del_articulo;
subtotal <- cantidad*precio_del_articulo;
IGV <- subtotal*0.19;
monto_a_pagar <- subtotal+IGV;
Escribir "Valor de IGV: ", IGV;
Escribir "Valor de monto a pagar: ", monto_a_pagar;
Escribir "Valor de subtotal: ", subtotal;
FinProceso
Escribir Sin Saltar "Ingresa el valor de cantidad:";
Leer cantidad;
Escribir Sin Saltar "Ingresa el valor de precio del articulo:";
Leer precio_del_articulo;
subtotal <- cantidad*precio_del_articulo;
IGV <- subtotal*0.19;
monto_a_pagar <- subtotal+IGV;
Escribir "Valor de IGV: ", IGV;
Escribir "Valor de monto a pagar: ", monto_a_pagar;
Escribir "Valor de subtotal: ", subtotal;
FinProceso