Guest User

Untitled

a guest
Nov 24th, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1.  
  2. public class Bagel extends BakeryGood
  3. {
  4.  
  5. public Bagel(String name, int qty, int cents)
  6. {
  7. super(name);
  8.  
  9. }
  10.  
  11. public int getCost()
  12. {
  13. cost = (cents/12) * qty;
  14.  
  15. }
  16.  
  17. }
Add Comment
Please, Sign In to add comment