Q:

Program to find the volume of the cylinder

belongs to collection: Basic Programs

0

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

V=pie x r2 x h

where,

r is the radius of the cylinder
h is the height of the cylinder
V is the volume of the cylinder

Algorithm

  1. Define the height of the cylinder.
  2. Define the radius of the cylinder.
  3. Calculate the volume of the cylinder pie x r2 x h
  4. 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

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

C Program

#include <stdio.h>  
int main()  
{  
    int height=38;  
    int radius=35;  
    double pie=3.14285714286;  
    double volume=pie*(radius*radius)*height;  
    printf("Volume of the cylinder=%f",volume);  
}  

 

Output:

Volume of the cylinder=146300.000000  

 

PHP Program

<?php    
     $height=38;  
    $radius=35;  
    $pie=3.14285714286;  
    $volume=$pie*($radius*$radius)*$height;  
    echo "Volume of the cube=";  
    echo $volume;  
?>

    

Output:

Volume of the cube=146300.00000013 

 

Java Program

public class cylinder{  
    public static void main(String args[])  
    {  
    int height=38;  
    int radius=35;  
    double pie=3.14285714286;  
    double volume=pie*(radius*radius)*height;  
        System.out.println("Volume of the cylinder="+volume);  
     }  
}  

 

Output:

Volume of the cylinder=146300.000000133

 

C# Program

using System;  
public class Program  
{  
    public static void Main()  
    {  
int height=38;  
int radius=35;  
double pie=3.14285714286;  
 double volume=pie*(radius*radius)*height;  
 Console.WriteLine("Volume of cylinder="+volume);  
}  
}  

 

Output:

Volume of cylinder=146300.000000133

 

Python Program

height=38  
radius=35  
pie=3.14285714286  
volume=pie*(radius*radius)*height  
print("volume of the cube="+str(volume))  

 

Output:

volume of the cube=146300.000000133

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Program to calculate the CGPA percentage... >>
<< Program to find the volume of the cube...