Advertisement
dessislava_nik

Untitled

Aug 18th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. package Starbucks;
  2.  
  3. class Espresso implements Food {
  4.  
  5. @Override
  6. public double getPrice() {
  7. double price = 1.50;
  8. return price;
  9. }
  10. @Override
  11. public double getCalories() {
  12. double calories = 25;
  13. return calories;
  14. }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement