Advertisement
idsystems

PseInt_Practica02_DescuentoTienda

May 8th, 2024
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. Proceso practica02
  2. // Una tienda ofrece un descuento del 15% sobre el total de la compra
  3. // y un cliente desea saber cuanto debera pagar finalmente por su
  4. // compra
  5.  
  6. subtotal <- 0;
  7. total <-0;
  8. descuento <- 0;
  9.  
  10. Escribir "Cual fue la compra del cliente?";
  11. Leer subtotal;
  12. descuento <- subtotal * 0.15
  13. total <- subtotal - descuento;
  14. Escribir "Su compra menos el 15% de descuento es: ", total;
  15.  
  16. FinProceso
  17.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement