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

사다리꼴의 면적을 찾는 자바 프로그램

<시간/>

이 기사에서는 사다리꼴의 면적을 찾는 방법을 이해할 것입니다. 사다리꼴은 적어도 한 쌍의 측면이 서로 평행한 사각형 유형입니다. 사다리꼴의 평행한 변을 밑변이라고 하고 사다리꼴의 평행하지 않은 변을 다리라고 합니다. 사다리꼴이라고도 합니다.

사다리꼴의 면적은 다음 공식을 사용하여 계산됩니다. -

(height/2 * (side_1 + side_2).
i.e.
Area = ½ x (sum of the lengths of the parallel sides) x perpendicular distance between parallel
sides

아래는 동일한 데모입니다. 평행한 변 a와 b의 길이와 사다리꼴 높이 h를 갖는 사다리꼴의 면적은 -

사다리꼴의 면적을 찾는 자바 프로그램

입력

입력이 -

라고 가정합니다.
side_1 = 5
side_2 = 6
height = 6

출력

원하는 출력은 -

Area of trapezium is: 33.0

알고리즘

Step 1 - START
Step 2 – Declare three integer values namely side_1 , side_2 and height. Declare a float value
namely my_area.
Step 3 - Read the required values from the user/ define the values
Step 4 – Calculate the area of the trapezium using the formula (height/2 * (side_1 + side_2)
and store the result
Step 5- Display the result
Step 6- Stop

예시 1

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

import java.util.Scanner;
public class AreaOfTrapezium {
   public static void main(String args[]){
      int side_1 , side_2 , height ;
      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 length of the first parallel side: ");
      side_1 = my_scanner.nextInt();
      System.out.print("Enter the length of the first parallel side : ");
      side_2 = my_scanner.nextInt();
      System.out.print("Enter the heigth of the trapezium : ");
      height = my_scanner.nextInt();
      float my_area = (height/2 * (side_1 + side_2));
      System.out.println("The area of trapezium is: " + my_area);
   }
}

출력

Required packages have been imported
A reader object has been defined
Enter the length of the first parallel side: 5
Enter the length of the first parallel side : 6
Enter the heigth of the trapezium : 6
The area of trapezium is: 33.0

예시 2

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

public class AreaOfTrapezium {
   public static void main(String args[]){
      int side_1 = 5, side_2 = 6, height = 6;
      System.out.println("The sides and height of the trapezium is defined as " +side_1 + ", " + side_2 + " and " + height);
      float my_area = (height/2 * (side_1 + side_2));
      System.out.println("The area of Trapezium is: " + my_area);
   }
}

출력

The sides and height of the trapezium is defined as 5, 6 and 6
The area of Trapezium is: 33.0