Guest User

Untitled

a guest
Oct 27th, 2016
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. /**
  2. * Calculates the price of the order based on the current quantity.
  3. *
  4. * @return the price
  5. */
  6. private int calculate price(int quantity {
  7. int price = quantity * 5;
  8. return price;
  9. }
Add Comment
Please, Sign In to add comment