This program will compute the volume of a cylinder. Write a function, area, that will compute the area of the base of a cylinder, and return the value of area to the main program. The main program will then compute the volume using the value of area, and the height of the cylinder, h
This program will compute the volume of a cylinder. Write a function, area, that will compute the area of the base of a cylinder, and return the value of area to the main program. The main program will then compute the volume using the value of area, and the height of the cylinder, h.
#include <iostream>
#include <cmath>
#include <iomanip>
using namespace std;
//function prototype
_____________________________________________________
int main()
{
double volume;
double h,r;
cout<<"Enter the height of the cylinder: "<<endl;
cin>>h;
cout<<"Enter the radius of the base of the cylinder: "<<endl;
cin>>r;
cout<<"The area of the base is: "______________________________
cout<<"The height of the cylinder is: "<<h<<endl;
volume=area(r)*h;
cout<<"The volume of the cylinder is: "<<volume<<endl;
return 0;
}
//function body
Trending now
This is a popular solution!
Step by step
Solved in 2 steps with 1 images