Programming Examples

Java program to calculate the area of a cylinder


Write a Java program which accept the radius and height of cylinder and calculate the area of a cylinder.

Solution

import java.util.*;
class Cylinder
{   
    public static void main(String args[])
    {
        Scanner sc=new Scanner(System.in);
        double radius,height; 
        double pi=3.14,area;
        System.out.println("Enter the Radius of Cylinder");
        radius=sc.nextDouble();
        System.out.println("Enter the Height of Cylinder");
        height=sc.nextDouble();
        area=2*pi*radius*radius+2*pi*radius*height;
        System.out.println("Area of Cylinder"+area);
    }
}
Output


Online Exam Quiz for One day Exam Online Typing Test CCC Online Test 2026 Best Computer Training Institute in Prayagraj (Allahabad) Best Java Training Institute in Prayagraj (Allahabad) Best Python Training Institute in Prayagraj (Allahabad) O Level Online Test in Hindi Best Website and Software Company in Allahabad