Realizar un diagrama de flujo que: nos permita realizar una compra de productos, si la cantidad de productos es mayor de 10 entonces se le hara un descuento del 10% (formula de descuento: descuento = subtotal - (subtotal * 0.10)) al calcular el total se debe determinar si habra vuelto o no.
Respuestas a la pregunta
Algoritmo CalcularVueltoCompra
Definir cant, precio, subtotal,descuento, total, pago, vuelto Como Real
Escribir Sin Saltar "Ingrese Cantidad: "
Leer cant
Escribir Sin Saltar "Ingrese Precio: "
Leer precio
si cant>0 y precio>0 Entonces
subtotal=cant*precio
si cant>=10 Entonces
descuento=subtotal*0.10
SiNo
descuento=0
FinSi
total=subtotal-descuento
Escribir "Descuento: $",descuento
Escribir "Total: $",total
Escribir Sin Saltar "Ingrese Pago: "
Leer pago
si pago<=0 Entonces
Escribir "El Pago Debe Ser Un Valor Válido"
SiNo
Si pago<total Entonces
Escribir "Su Pago Es Insuficiente"
SiNo
vuelto=pago-total
Escribir "Su Vuelto Es: $",vuelto
FinSi
FinSi
SiNo
Escribir "Cantidad Y Precio Deben Ser Valores Válidos"
FinSi
FinAlgoritmo