There is great debate over the best shape of a pizza. Write a program that allows the user to enter the diameter and cost of a pizza. It should then calculate the total size given first a square pizza and then a round pizza. It should then calculate the different between the two shapes as well as the cost per inch of the pizza and display the information to the user I need to create this program that shows which pizza is the best I would appreciate if pseudocodes and flowchart can be added so I can read it and understand it I created this code but it was just for the price and not the best pizza one  "The point of the program is to figure out which is the better deal. Your program asks for separate costs.Your formula for the size of a round pizza is incorrect." this was the feedback I got   # Enter the cost of square and round pizza cost_square_pizza = int(input("Enter the cost of square pizza: ")) cost_round_pizza = int(input("Enter the cost of round pizza: "))   # Enter the diameter of the pizza diameter = int(input("Enter the diameter of the pizza: "))   # size of the square pizza is calculated size_of_square_pizza = diameter*diameter   # size of round pizza is calculated size_of_round_pizza = 3.14*(diameter*diameter)/4   # shape difference of square and round pizza is calculated shape_difference = abs((size_of_square_pizza-size_of_round_pizza))   # for printing the values upto 2 decimal places shape_difference = "{:.2f}".format(shape_difference)   # cost per inch is calculted by dividing the size by cost cost_difference = abs((size_of_square_pizza/cost_square_pizza - size_of_round_pizza/cost_round_pizza))   # for printing the values upto 2 decimal places cost_difference = "{:.2f}".format(cost_difference)   # printing the shape difference print("difference between two shapes : " , shape_difference )   # printing the cost difference print("difference between cost per inch of pizza :" , cost_difference)

Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
icon
Related questions
Question

There is great debate over the best shape of a pizza. Write a program that allows the user to enter the diameter and cost of a pizza. It should then calculate the total size given first a square pizza and then a round pizza. It should then calculate the different between the two shapes as well as the cost per inch of the pizza and display the information to the user

I need to create this program that shows which pizza is the best I would appreciate if pseudocodes and flowchart can be added so I can read it and understand it

I created this code but it was just for the price and not the best pizza one 

"The point of the program is to figure out which is the better deal. Your program asks for separate costs.Your formula for the size of a round pizza is incorrect."

this was the feedback I got

 

# Enter the cost of square and round pizza

cost_square_pizza = int(input("Enter the cost of square pizza: "))

cost_round_pizza = int(input("Enter the cost of round pizza: "))

 

# Enter the diameter of the pizza

diameter = int(input("Enter the diameter of the pizza: "))

 

# size of the square pizza is calculated

size_of_square_pizza = diameter*diameter

 

# size of round pizza is calculated

size_of_round_pizza = 3.14*(diameter*diameter)/4

 

# shape difference of square and round pizza is calculated

shape_difference = abs((size_of_square_pizza-size_of_round_pizza))

 

# for printing the values upto 2 decimal places

shape_difference = "{:.2f}".format(shape_difference)

 

# cost per inch is calculted by dividing the size by cost

cost_difference = abs((size_of_square_pizza/cost_square_pizza - size_of_round_pizza/cost_round_pizza))

 

# for printing the values upto 2 decimal places

cost_difference = "{:.2f}".format(cost_difference)

 

# printing the shape difference

print("difference between two shapes : " , shape_difference )

 

# printing the cost difference

print("difference between cost per inch of pizza :" , cost_difference)

 

 

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 4 steps with 2 images

Blurred answer
Recommended textbooks for you
Computer Networking: A Top-Down Approach (7th Edi…
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
Computer Organization and Design MIPS Edition, Fi…
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
Network+ Guide to Networks (MindTap Course List)
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
Concepts of Database Management
Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning
Prelude to Programming
Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education
Sc Business Data Communications and Networking, T…
Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY