Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Proceso practica02
- // Una tienda ofrece un descuento del 15% sobre el total de la compra
- // y un cliente desea saber cuanto debera pagar finalmente por su
- // compra
- subtotal <- 0;
- total <-0;
- descuento <- 0;
- Escribir "Cual fue la compra del cliente?";
- Leer subtotal;
- descuento <- subtotal * 0.15
- total <- subtotal - descuento;
- Escribir "Su compra menos el 15% de descuento es: ", total;
- FinProceso
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement