Advertisement
Guest User

3.57

a guest
Jan 25th, 2020
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. /**
  2. *reduce price by the given amount
  3. */
  4. Public void discount(int amount)
  5. {
  6. Price = price - amount;
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement