ในบทความนี้ เราจะเข้าใจวิธีการหาพื้นที่ของรูปสี่เหลี่ยมด้านขนานรูปสี่เหลี่ยมด้านขนานที่มีด้านตรงข้ามขนานกันสองคู่ มีฐานและความสูงซึ่งเป็นระยะตั้งฉากระหว่างฐานกับด้านตรงข้ามขนานกัน
พื้นที่ของสี่เหลี่ยมด้านขนานคำนวณโดยใช้สูตร -
base * height i.e. b x h
ด้านล่างนี้เป็นการสาธิตสิ่งเดียวกัน -
ป้อนข้อมูล
สมมติว่าข้อมูลที่เราป้อนคือ −
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
ที่นี่ ผู้ใช้ป้อนอินพุตตามข้อความแจ้ง คุณสามารถลองใช้ตัวอย่างนี้ในเครื่องมือกราวด์ของเรา .
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