Guest User

Untitled

a guest
Feb 20th, 2020
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. abstract class Restaurant
  2. {
  3. String name;
  4. public void display(){
  5. System.out.println("Name of restaurant: "+name);
  6. }
  7.  
  8. abstract void totalPrice();
  9. abstract void menuItems();
  10. abstract void location();
  11. }
Advertisement
Add Comment
Please, Sign In to add comment