Java
 Computer >> コンピューター >  >> プログラミング >> Java

平行四辺形の領域を見つけるJavaプログラム


この記事では、平行四辺形の面積を見つける方法を理解します。平行四辺形には、2対の平行な等しい反対側があります。ベースと、ベースとその反対側の平行な側との間の垂直距離である高さがあります。

平行四辺形の面積は、式-

を使用して計算されます。
base * height
i.e.
b x h

以下は同じのデモンストレーションです-

平行四辺形の領域を見つけるJavaプログラム

入力

入力が-

であると仮定します
Base : 6
Height : 8

出力

必要な出力は-

になります
Area parallelogram is : 48

アルゴリズム

Step 1 - START
Step 2 - Declare three integer values values namely
Step 3 - Read the required values from the user/ define the values
Step 4 - Calculate the area using the formula by base * height and store the result.
Step 5 - Display the result
Step 6 - Stop

例1

ここでは、プロンプトに基づいてユーザーが入力を入力しています。この例は、コーディンググラウンドツールでライブで試すことができます 平行四辺形の領域を見つけるJavaプログラム

import java.util.Scanner;
public class AreaOfParallelogram{
   public static void main(String args[]){
      int base, height, my_area;
      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 value of parallelogram base : ");
      base = my_scanner.nextInt();
      System.out.print("Enter the value of parallelogram base : ");
      height = my_scanner.nextInt();
      my_area=base*height;
      System.out.println("The area of the parallelogram is : "+my_area);
   }
}

出力

Required packages have been imported
A reader object has been defined
Enter the value of parallelogram base : 6
Enter the value of parallelogram base : 8
The area of the parallelogram is : 48

例2

ここでは、整数は事前に定義されており、その値にアクセスしてコンソールに表示されます。

public class AreaOfParallelogram{
   public static void main(String args[]){
      int base, height;
      base=6;
      height=8;
      System.out.println("The base and height values are defined as " +base +" and " +height);
      int my_area=base*height;
      System.out.println("The area of the parallelogram is : "+my_area);
   }
}

出力

The base and height values are defined as 6 and 8
The area of the parallelogram is : 48

  1. 正方形の領域を見つけるJavaプログラム

    この記事では、正方形の面積を見つける方法を理解します。正方形の面積は、次の式を使用して計算されます- side*side i.e. s2 以下は同じのデモンストレーションです- 正方形の辺がsの場合、正方形の面積はs 2で与えられます。 − 入力 入力が-であると仮定します Length of the side : 4 出力 必要な出力は-になります Area of the square : 16 アルゴリズム Step 1 - START Step 2 - Declare 2 integer values namely my_side and my_area. S

  2. 長方形の周囲を見つけるJavaプログラム

    この記事では、長方形の周囲を見つける方法を理解します。長方形の周囲長は、長方形のすべての辺の長さを加算して計算されます。 以下は長方形のデモンストレーションです。長方形の周囲は、長方形の2つの長さと2つの幅の全長です- 入力 入力が-であると仮定します The length of the sides of a rectangle are : 5, 8, 5, 8 出力 必要な出力は-になります Perimeter : 26 アルゴリズム Step 1 – START Step 2 – Declare 5 floating point variabl