Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

**PLEASE HELP ME COMPLETE THIS QUESTION IN JAVA** 4.11) Create a class named Pizza that stores information about a single pizza. It should contain the

**PLEASE HELP ME COMPLETE THIS QUESTION IN JAVA**

4.11) 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 main method that asks for pizza size and number of toppings for each category. It should then initialize Pizza class and Print out the string from getDescription();

**IT HAS TO FOLLOW THIS RESULT**:

EnterthesizeofPizza:Large

EnterthenumberofCheesetoppings:2

EnterthenumberofPepperonitoppings:0

EnterthenumberofHamtoppings:1

LargePizzawith2Cheesetoppings,0Pepperonitoppings,and1Hamtoppings.

TotalPrice:20.0

THANK YOU IN ADVANCE

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

Intelligent Image Databases Towards Advanced Image Retrieval

Authors: Yihong Gong

1st Edition

1461375037, 978-1461375036

More Books

Students also viewed these Databases questions

Question

Explain budgetary Control

Answered: 1 week ago

Question

Solve the integral:

Answered: 1 week ago

Question

What is meant by Non-programmed decision?

Answered: 1 week ago

Question

What are the different techniques used in decision making?

Answered: 1 week ago