C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
Program to find the volume of the cylinderA 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. FormulaV=pie x r2 x h where, r is the radius of the cylinder Algorithm
ComplexityO(1) SolutionC Program#include 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 Programpublic 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# Programusing 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 Programheight=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
Next Topic#
|