ในบทความนี้ เราจะเข้าใจวิธีการหาเส้นรอบวงของสี่เหลี่ยม เส้นรอบวงของสี่เหลี่ยมผืนผ้าคำนวณโดยการบวกความยาวของทุกด้านของสี่เหลี่ยมผืนผ้า
ด้านล่างเป็นการสาธิตของสี่เหลี่ยมผืนผ้า ปริมณฑลของรูปสี่เหลี่ยมผืนผ้าคือความยาวรวมของความยาวทั้งสองและความกว้างสองด้านของรูปสี่เหลี่ยมผืนผ้า -
ป้อนข้อมูล
สมมติว่าข้อมูลที่เราป้อนคือ −
The length of the sides of a rectangle are : 5, 8, 5, 8
ผลผลิต
ผลลัพธ์ที่ต้องการจะเป็น −
Perimeter : 26
อัลกอริทึม
Step 1 – START Step 2 – Declare 5 floating point variables a, b, c, d and perimeter Step 3 – Read values of a and b from user as the opposite sides of the rectangle are equal, only two sides input will be sufficient. Step 4- Calculate the perimeter by adding up all the sides Step 5- Display the Perimeter value Step 6 – STOP
ตัวอย่างที่ 1
ที่นี่ ผู้ใช้ป้อนอินพุตตามข้อความแจ้ง คุณสามารถลองใช้ตัวอย่างนี้ในเครื่องมือกราวด์ของเรา .
import java.util.Scanner; public class RectanglePerimeter{ public static void main (String args[]){ float a ,b, c, d, perimeter; 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.print("Enter the length of first side : "); a = my_scanner.nextFloat(); System.out.print("Enter the length of second side : "); b = my_scanner.nextFloat(); c = a; d = b; System.out.printf("The length of the sides of the Rectangle are %.2f %.2f %.2f %.2f", a, b, c, d); perimeter = a + b + c + d; System.out.printf("\nThe perimeter of Rectangle is: %.2f",perimeter); } }
ผลลัพธ์
Required packages have been imported A Scanner object has been defined Enter the length of first side : 5 Enter the length of second side : 8 The length of the sides of the Rectangle are 5.00 8.00 5.00 8.00 The perimeter of Rectangle is: 26.00
ตัวอย่างที่ 2
ในที่นี้ มีการกำหนดจำนวนเต็มก่อนหน้านี้ และเข้าถึงและแสดงค่าบนคอนโซล
public class RectanglePerimeter{ public static void main (String args[]){ float a ,b, c, d, perimeter; a=c= 8; b=d= 5; System.out.printf("The length of the sides of the Rectangle are %.2f %.2f %.2f %.2f", a, b, c, d); perimeter = a + b + c + d; System.out.printf("\nThe perimeter of Rectangle is: %.2f",perimeter); } }
ผลลัพธ์
The length of the sides of the Rectangle are 8.00 5.00 8.00 5.00 The perimeter of Rectangle is: 26.00