diff --git a/volume_of_cylinder.java b/volume_of_cylinder.java new file mode 100644 index 0000000..be2efeb --- /dev/null +++ b/volume_of_cylinder.java @@ -0,0 +1,22 @@ +import java.util.Scanner; +class VolumeOfCylinder +{ + public static void main(String args[]) + { + + Scanner s= new Scanner(System.in); + + System.out.println("Enter the radius:"); + double r=s.nextDouble(); + System.out.println("Enter the height:"); + double h=s.nextDouble(); + + double volume=((22*r*r*h)/7); + + System.out.println("volume of Cylinder is: " +volume); + + + + + } +}