Guest User

Untitled

a guest
Nov 18th, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. def amount
  2. amount = @quantity * @unit_price
  3. if @quantity >= 10
  4. amount *= 0.85
  5. elsif @quantity >= 5
  6. amount *= 0.9
  7. end
  8. amount.to_i
  9. end
Add Comment
Please, Sign In to add comment