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
See Also:-C++ Program To Find Area And Circumference Of Circle
Output:-
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); } }
See Also:-C++ Program To Find Area And Circumference Of Circle
Output:-
0 Comments: