Circumference Of Circle Example Java Program
Definition
Circumference is the linear distance around the edge of a closed curve or circular object. The circumference of a circle is the distance around it. Pi is defined as the ratio of a circle's circumference C to its diameter d Or, equivalently, as the ratio of the circumference to twice the radius.Formula
C=pi*d=2*pi*r where, C is the circumference of the circle of radius r d is the diameter of the circle pi is a constant which is denoted as ? and its value is 3.14159 26535 89793
Circumference Of Circle Example Program
import java.util.Scanner; class CircumferenceOfCircle{ static Scanner in = new Scanner(System.in); public static void main(String args[]){ System.out.print("Enter the radius: "); double radius = in.nextDouble(); double circumference= Math.PI * 2*radius; System.out.println( "The circumference of the circle is:"+circumference) ; } }
Sample Output
Output is: Enter the radius: 5 The circumference of the circle is:31.41592653589793
Calculation Programs
- Area Of Circle Example Java Program
- Odd Or Even Example Java Program
- Swap With Variable Example Java Program
- Swap Without Variable Example Java Program
- Leap Year Or Not Example Java Program
- Factorial Example Java Program
- LCM Example Java Program
- GCD Example Java Program
- Simple Calculator Example Java Program
- Multiplication Table Example Java Program
- Palindrome Number Example Java Program
- Area Of Rectangle Example Java Program
- Palindrome String Example Java Program
- Check whether the given number is Armstrong number or not Example Java Program
- Armstrong Number In A Particular Range Example Java Program
- Create Matrix Example Java Program
- Matrix Addition Example Java Program
- Matrix Subtraction Example Java Program
- Matrix Multiplication Example Java Program
- Transpose Of A Matrix Example Java Program
- Square Root Example Java Program
- Area Of Square Example Java Program
- Square Root Without InBuilt Functions Example Java Program
- Twin Prime Example Java Program
- Circumference Of Circle Example Java Program
- Sum Of Three Numbers Example Java Program
- Largest Of Three Numbers Example Java Program
- Smallest Number Example Java Program
- Average of n numbers Example Java Program
- Prime Number Example Java Program
Read More Articles
- Multiple Inheritance Using Interface Example Java Program
- Single Inheritance Example Java Program
- Multilevel Inheritance Example Java Program
- Hierarchical Inheritance Example Java Program
- Find all Substrings of a given string Example Java Program
- Create Matrix Example Java Program
- Sum Of Three Numbers Example Java Program
- Heap Sort Example Java Program
- Twin Prime Example Java Program
- Compile Time Polymorphism Example Java Program