Computer >> Máy Tính >  >> Lập trình >> Java

Chương trình Java để tìm chu vi của hình chữ nhật

Trong bài này, chúng ta sẽ hiểu cách tìm chu vi hình chữ nhật. Chu vi của hình chữ nhật được tính bằng cách cộng chiều dài của tất cả các cạnh của hình chữ nhật.

Dưới đây là một minh họa của một hình chữ nhật. Chu vi hình chữ nhật là tổng chiều dài của hai chiều dài và hai chiều rộng -

Chương trình Java để tìm chu vi của hình chữ nhật

Đầu vào

Giả sử đầu vào của chúng tôi là -

The length of the sides of a rectangle are : 5, 8, 5, 8

Đầu ra

Đầu ra mong muốn sẽ là -

Perimeter : 26

Thuật toán

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

Ví dụ 1

Ở đây, đầu vào đang được người dùng nhập dựa trên lời nhắc. Bạn có thể thử trực tiếp ví dụ này trong công cụ nền tảng mã hóa của chúng tôi Chương trình Java để tìm chu vi của hình chữ nhật .

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);
   }
}

Đầu ra

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

Ví dụ 2

Ở đây, số nguyên đã được xác định trước đó và giá trị của nó được truy cập và hiển thị trên bảng điều khiển.

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);
   }
}

Đầu ra

The length of the sides of the Rectangle are 8.00 5.00 8.00 5.00
The perimeter of Rectangle is: 26.00