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

Java 프로그램에서 원의 면적 찾기

<시간/>

이 기사에서는 원의 면적을 찾는 방법을 이해할 것입니다. 원의 면적은 다음 공식을 사용하여 계산됩니다. -

pie*radius*radius.
i.e.
πr2
Where π = 3.14 and r is the radius of the circle.

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

입력

입력이 -

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

출력

원하는 출력은 -

The Area of Circle is: 78.57142857142857

알고리즘

Step 1 – START
Step 2 – Declare 2 double variables area and radius
Step 3 – Read the value of the radius from the user
Step 4- Calculate the area of the circle by using the formula (22*radius*radius)/7 and store
the result as area
Step 5- Display the area value
Step 6 – STOP

예시 1

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

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

출력

Required packages have been imported
A Scanner object has been defined
Enter the radius of the circle:
5
The Area of Circle is: 78.57142857142857

예시 2

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

public class AreaOfCircle{
   public static void main(String args[]){
      double area, radius;
      radius= 5;
      System.out.printf("The radius of the circle is %.8f ", radius);
      area=(22*radius*radius)/7 ;
      System.out.println("\nThe Area of Circle is: " + area);
   }
}

출력

The radius of the circle is 5.00000000
The Area of Circle is: 78.57142857142857