Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

I.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

I.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 that set all of the instance variables. -

-Public methods to get and set the instance variables.

-A public method named calcost() 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 calCost().

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

1. Design: Draw the UML diagram for the described class (Describe the major steps for solving the problem.) 2. Coding

3. Testing: (Describe how you test this program)

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Beginning VB.NET Databases

Authors: Thearon Willis

1st Edition

1594864217, 978-1594864216

More Books

Students also viewed these Databases questions

Question

Explain the various methods of job evaluation

Answered: 1 week ago

Question

Differentiate Personnel Management and Human Resource Management

Answered: 1 week ago

Question

Describe the functions of Human resource management

Answered: 1 week ago