Problem

Visit www.myprogramminglab.com to complete select Exercise online and get instant feedback...

Visit www.myprogramminglab.com to complete select Exercise online and get instant feedback.

Exercise

Create a class named Pizza that stores information about a single pizza. It should contain the following:

• Private instance variables to store the size of the pizza (either small, medium, or large), the number of cheese toppings, the number of pepperoni toppings, and the number of ham toppings.

• Constructor(s) that set all of the instance variables.

• Public methods to get and set the instance variables.

• A public method named calcCost() that returns a double that is the cost of the pizza.

Pizza cost is determined by:

Small: $10 + $2 per topping

Medium: $12 + $2 per topping

Large: $14 + $2 per topping

• A public method named getDescription() that returns a String containing the pizza size, quantity of each topping, and the pizza cost as calculated by calcCost().

Write test code to create several pizzas and output their descriptions. For example, a large pizza with one cheese, one pepperoni and two ham toppings should cost a total of $22.

Step-by-Step Solution

Request Professional Solution

Request Solution!

We need at least 10 more requests to produce the solution.

0 / 10 have requested this problem solution

The more requests, the faster the answer.

Request! (Login Required)


All students who have requested the solution will be notified once they are available.
Add your Solution
Textbook Solutions and Answers Search
Solutions For Problems in Chapter 4