Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- abstract class Restaurant
- {
- String name;
- public void display(){
- System.out.println("Name of restaurant: "+name);
- }
- abstract void totalPrice();
- abstract void menuItems();
- abstract void location();
- }
Advertisement
Add Comment
Please, Sign In to add comment