-
Lenguaje
PSeInt (Pseudocódigo)
-
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
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Proceso PagoPor10Productos
descuento <- 0;
IVA <- 0;
subtotal <- 0;
total_a_pagar <- 0;
Para i<-1 Hasta 10 Con Paso 1 Hacer
Escribir "PROCESO ", i;
Escribir Sin Saltar "Ingresa el valor de cantidad de productos:";
Leer cantidad_de_productos;
Escribir Sin Saltar "Ingresa el valor de precio del producto:";
Leer precio_del_producto;
importe <- cantidad_de_productos*precio_del_producto;
subtotal <- subtotal+importe;
Escribir "Valor de importe: ", importe;
Escribir "";
FinPara
descuento <- subtotal*0.02;
IVA <- (subtotal-descuento)*0.19;
total_a_pagar <- subtotal-descuento+IVA;
Escribir "Valor de descuento: ", descuento;
Escribir "Valor de IVA: ", IVA;
Escribir "Valor de subtotal: ", subtotal;
Escribir "Valor de total a pagar: ", total_a_pagar;
FinProceso
descuento <- 0;
IVA <- 0;
subtotal <- 0;
total_a_pagar <- 0;
Para i<-1 Hasta 10 Con Paso 1 Hacer
Escribir "PROCESO ", i;
Escribir Sin Saltar "Ingresa el valor de cantidad de productos:";
Leer cantidad_de_productos;
Escribir Sin Saltar "Ingresa el valor de precio del producto:";
Leer precio_del_producto;
importe <- cantidad_de_productos*precio_del_producto;
subtotal <- subtotal+importe;
Escribir "Valor de importe: ", importe;
Escribir "";
FinPara
descuento <- subtotal*0.02;
IVA <- (subtotal-descuento)*0.19;
total_a_pagar <- subtotal-descuento+IVA;
Escribir "Valor de descuento: ", descuento;
Escribir "Valor de IVA: ", IVA;
Escribir "Valor de subtotal: ", subtotal;
Escribir "Valor de total a pagar: ", total_a_pagar;
FinProceso