A cylinder can be defined as the solid 3D object having two circular faces connected with the rectangular surface. The volume of the cylinder is the amount of space contained by it. The formula to calculate the volume of the cylinder is given below.
Formula
where,
r is the radius of the cylinder
h is the height of the cylinder
V is the volume of the cylinder
Algorithm
- Define the height of the cylinder.
- Define the radius of the cylinder.
- Calculate the volume of the cylinder pie x r2 x h
- Define volume_cylinder and assign the volume of the cylinder to it.
Complexity
O(1)
Input:
radius (r) = 38 , height (h) = 35
Output:
Volume of the cylinder = pie * radius2 * height
= 3.14 * 38* 38 * 35
= 146300.000000
C Program
Output:
PHP Program
Output:
Java Program
Output:
C# Program
Output:
Python Program
Output: