forked from AnirudhJalan/Hacktoberfest-22
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVolume.cpp
51 lines (40 loc) · 1.07 KB
/
Volume.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#include<iostream>
using namespace std;
float vol(int);
float vol(float,int);
float vol(int,int,float);
int main(){
int a,h,l,b;
float r,H;
//for Cube
cout<<"Enter the sides for the cube(units):";
cin>>a;
cout<<"Volume of cube(cb. units): " <<vol(a)<<"\n";
//for Cylinder
cout<< "Enter the height for the cylinder(units):";
cin>> h;
cout<< "Enter the radius for the cylinder(units):";
cin>> r;
cout<<"Volume of cylinder(cb. units): " <<vol(r,h)<< "\n";
//for Rectanglular box
cout<< "Enter the length for the rectangular box(units):";
cin>>l;
cout<< "Enter the breadth for the rectangular box(units):";
cin>>b;
cout<< "Enter the height for the rectangular box(units):";
cin>>h;
cout<<"Volume of rectangular box(cb. units): " <<vol(l,b,h);
return 0;
}
float vol(int a)//Cube volume
{
return(a*a*a);
}
float vol(float r,int h)//Cylinder volume
{
return(3.14*r*r*h);
}
float vol(int l,int b,float h)//Rectangular box volume
{
return(l*b*h);
}