Advertisement
Guest User

Untitled

a guest
Feb 27th, 2020
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1.  
  2. READ amount
  3.  
  4. COMPUTE salesTax AS amount * 0.07
  5. COMPUTE amount AS amount + salesTax
  6.  
  7. DISPLAY amount
  8.  
  9. READ rating
  10.  
  11. IF rating < 3 THEN
  12.  
  13. COMPUTE tip AS amount * 0.10
  14. COMPUTE amount AS tip + amount
  15. DISPLAY amount
  16.  
  17. ELSE
  18.  
  19. IF rating < 7 THEN
  20. COMPUTE tip AS amount * 0.15
  21. COMPUTE amount AS tip + amount
  22. DISPLAY amount
  23.  
  24.  
  25. ElSE
  26. IF rating < 11 THEN
  27.  
  28. COMPUTE tip AS amount * 0.20
  29. COMPUTE amount AS tip + amount
  30. DISPLAY amount
  31.  
  32. ENDIF
  33.  
  34.  
  35. ENDIF
  36.  
  37. READ reward
  38.  
  39.  
  40. IF reward == TRUE THEN
  41.  
  42. READ balance
  43.  
  44. IF balance > amount THEN
  45. COMPUTE amount AS amount - balance
  46. SET balance TO 0
  47. DISPLAY amount
  48. ELSE
  49. COMPUTE balance AS balance - amount
  50. SET amount TO 0
  51. DISPLAY amount
  52.  
  53.  
  54. ELSE
  55. DISPLAY amount
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement