13/12/2016

Java Program to Calculate Area and Circumference of Circle

Problem:- Java Program to Calculate Area and Circumference of Circle or Program to Calculate Area and Circumference of Circle in Java or simple java program to find area of circle or Java Program to Calculate and Display Area of a Circle or Java Program to calculate area and circumference of circle or Calculate Area / Circumference Of Circle Using Java Math.PI

Check This:- HackerRank solution for C++ Domain.

Explanation:- Circumference of the circle is the distance around the circle. Below two formula are given with the help of both formulae you can find the Area and Circumference of Circle. We can calculate the circumference of the circle by given formula.

Circumference of Circle = 2 * π * r

Here PI (π) is a Greek Letter and r is a Radius (1/2 Of Diameter ) PI (π) = 3.141592653589793 Approx. It is a constant value for more about Circumference Click Here

Area of Circle = π * r * r

For more about area of Circle Click Here



Java Program to Calculate Area and Circumference of Circle



/* Program By Ghanendra Yadav
   Visit http://www.programmingwithbasics.com/
*/
import java.util.Scanner;
class circle
{
   static Scanner sc = new Scanner(System.in);
   public static void main(String args[])
   {
      System.out.print("Enter The Radius Of Circle: ");
      double radius = sc.nextDouble();
      
   double area = Math.PI * (radius * radius);
      System.out.println("Circle Area is : " + area);
      
   double circumference= Math.PI * 2*radius;
      System.out.println( "Circle Circumference is:"+circumference);
   }
}
Previous Post
Next Post

post written by:

Hi, I’m Ghanendra Yadav, SEO Expert, Professional Blogger, Programmer, and UI Developer. Get a Solution of More Than 500+ Programming Problems, and Practice All Programs in C, C++, and Java Languages. Get a Competitive Website Solution also Ie. Hackerrank Solutions and Geeksforgeeks Solutions. If You Are Interested to Learn a C Programming Language and You Don't Have Experience in Any Programming, You Should Start with a C Programming Language, Read: List of Format Specifiers in C.
Follow Me

0 Comments: