Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Use python 3.6 please A right circular cone is a 3-dimensional shape that has 2 key dimensions: 1. The base radiusr 2. The height -
Use python 3.6 please
A right circular cone is a 3-dimensional shape that has 2 key dimensions: 1. The base radiusr 2. The height - h An illustration of a right circular cone with these dimensions labelled is shown below The formula to calculate the surface area of a cone is: Surface Area (r + V Y2 + h2 The formula to calculate the volume of a cone is: Volume -rh 3 Write a program that calculates the surface area and volume of a right circular cone. Name your program file 'YourUserNameA101.py, e.g. dazh001A101.py Your program will need to: . Display a banner . Ask the user to enter values for the base radius and height. You can assume that the user will always enter integer values. Calculate the surface area and volume of the cone using the values for the radius and height entered by the user . . Display these calculated values rounded to 4 decimal places. Two example outputs using the completed program are shown below. Your program must give the output in the same format as the outputs in the two examples below Right Circular Cone Right Circular Cone Surface Area and Volume Calculator | | Surface Area and Volume Calc:a lator Radius: 5 leight: 10 Radius: 25 Height: 13 Surface Area: 254.1602 Volume: 261.7994 Surface Area: 4175.5908 Volume: 8508.4801Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started