Question: Create a class named Pizza with data fields for description (such as sausage and onion) and price. Include a constructor that requires arguments for both
Create a class named Pizza with data fields for description (such as sausage and onion) and price. Include a constructor that requires arguments for both fields and a method to display the data. Create a subclass named DeliveryPizza that inherits from Pizza but adds a delivery fee and a delivery address. The description, price, and delivery address are required as arguments to the constructor. The delivery fee is $3 if the pizza ordered costs more than $15; otherwise it is $5. Write an application that instantiates at least two objects of each type, and display the values. Save the files as Pizza.java, DeliveryPizza.java, and DemoPizzas.java.
Step by Step Solution
3.39 Rating (171 Votes )
There are 3 Steps involved in it
public class Pizza private String description private double price public PizzaString desc double pr ... View full answer
Get step-by-step solutions from verified subject matter experts
