Question: Jump to level 1 Define the following functions: ComputeBaseArea ( ) takes one double parameter as a cylinder's radius. The function returns the area of
Jump to level
Define the following functions:
ComputeBaseArea takes one double parameter as a cylinder's radius. The function returns the area of the cylinder's base
as a double. The area of the base is calculated by: Area radius
ComputeSurfaceArea takes two double parameters as a cylinder's radius and height. The function returns the cylinder's
surface area as a double, and uses the ComputeBaseArea function to calculate the cylinder's base area. The surface area
is calculated by: Surface area base area
#include
#include
#include
using namespace std;
Your code goes here
int main
double radius;
double height;
cin radius;
cin height;
cout fixed setprecision;
cout "Radius: radius endl;
cout "Height: height endl;
cout "Base area: ;
cout ComputeBaseArearadius endl;
cout "Surface area: ;
cout ComputeSurfaceArearadius height endl;
return ;
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
