Computer >> 컴퓨터 >  >> 프로그램 작성 >> Java

원의 둘레를 찾는 Java 프로그램

<시간/>

이 기사에서는 원의 둘레를 찾는 방법을 이해할 것입니다. 원주는 원의 둘레입니다. 원 주위의 거리입니다.

둘레는 공식 C =2𝜋\pi r 로 지정됩니다. 여기서 \pi𝜋 =3.14이고 r은 원의 반지름 −

원의 둘레를 찾는 Java 프로그램

아래는 동일한 데모입니다 -

입력

입력이 -

라고 가정합니다.
Radius of the circle : 5

출력

원하는 출력은 -

Perimeter of Circle is: 31.428571428571427

알고리즘

Step 1 - START
Step 2 - Declare 2 double values namely my_radius and my_perimeter
Step 3 - Read the required values from the user/ define the values
Step 4 – Calculate the perimeter using the formula using the formula (2*22*7)/7 and store
the result.
Step 5- Display the result
Step 6- Stop

예시 1

여기에서 입력은 프롬프트에 따라 사용자가 입력하고 있습니다. 우리코딩 그라운드 도구에서 이 예제를 라이브로 사용해 볼 수 있습니다. 원의 둘레를 찾는 Java 프로그램 .

import java.util.Scanner;
public class PerimeterOfCircle{
   public static void main(String args[]){
      double my_radius, my_perimeter;
      System.out.println("Required packages have been imported");
      Scanner my_scanner = new Scanner(System.in);
      System.out.println("A reader object has been defined ");
      System.out.print("Enter the radius of the circle : ");
      my_radius = my_scanner.nextDouble();
      my_perimeter =(22*2*my_radius)/7 ;
      System.out.println("The perimeter of Circle is: " +my_perimeter);
   }
}

출력

Required packages have been imported
A reader object has been defined
Enter the radius of the circle : 5
The perimeter of Circle is: 31.428571428571427

예시 2

여기서 정수는 이전에 정의되었으며 그 값은 콘솔에 액세스되어 표시됩니다.

public class PerimeterOfCircle{
   public static void main(String args[]){
      double my_radius, my_perimeter;
      my_radius = 5;
      System.out.println("The radius of the circle is defined as " +my_radius);
      my_perimeter =(22*2*my_radius)/7 ;
      System.out.println("The perimeter of Circle is: " +my_perimeter);
   }
}

출력

The radius of the circle is defined as 5.0
The perimeter of Circle is: 31.428571428571427