Programming Assignment 3 (Pizza Pi)Murphy Pizza Palace needs an application to calculate the number of slices of a
pizza of any size can be divided into. The application should do the following:
Allow the user to enter the diameter of the pizza, in inches.
Calculate the number of slices that can be cut from a pizza that size.
Display a message that indicates the number of slices.
To calculate the number of slices that can be cut from the pizza, you must know
the following facts:
Each slice should have an area of 14.125 square inches.
To calculate the number of slices, divide the area of the pizza by 14.125.
The area of the pizza is calculated with the following formula: 𝐴𝑟𝑒𝑎 = 𝜋𝑟 2
Where 𝜋 = 3.14159 and 𝑟 is the radius of the pizza. Note that 𝑑 = 2𝑟.
Input validation: If the user fails to enter numeric values, display an appropriate
message in a StatusStrip and do not attempt to perform calculations.
The name of the 3rd programming assignment is MurphyPizzaPi. Follow the
same instructions as in the 1st and the 2nd programming assignments to submit
the 3rd programming assignment. Name the folder PA3_YourName (e.g.,
PA3_KSingh). The designer view should be as shown below.