Programa Java para encontrar el perímetro de un rectángulo

Un Rectángulo es un cuadrilátero con cuatro ángulos rectos (90°). En un rectángulo, los lados opuestos son iguales. Un rectángulo con los cuatro lados iguales se llama Cuadrado . Un rectángulo también se puede llamar paralelogramo en ángulo recto.

Rectángulo

En el rectángulo de arriba, los lados A y C son iguales y B y D son iguales.

El perímetro de un rectángulo es la longitud total de sus cuatro lados. Se puede calcular simplemente por sus cuatro lados.

Perimeter of rectangle ABCD = A+B+C+D

Dado que los lados opuestos son iguales en un rectángulo, se puede calcular como la suma del doble de uno de sus lados y el doble de su lado adyacente.

Perimeter of rectangle ABCD = 2A + 2B = 2(A+B)

Programa

Java

// Java program to find the perimeter of a Rectangle
 
import java.io.*;
 
class GFG {
   
    // Method to calculate the perimeter of the rectangle
    // with given length and breadth
    static void perimeter(int length, int breadth)
    {
        // Calculate the 'perimeter' using the formula
        int perimeter = 2 * (length + breadth);
       
        System.out.println("The perimeter of the given rectangle of length "
            + length + " and breadth " + breadth + " = "
            + perimeter);
    }
 
    // Driver method
    public static void main(String[] args)
    {
        // Initialize a variable length that stores length of
        // the given rectangle
        int length = 10;
       
        // Initialize a variable breadth that stores breadth
        // of the given rectangle
        int breadth = 20;
       
        // Call the perimeter method on these length and
        // breadth
        perimeter(length, breadth);
    }
}
Producción

The perimeter of the given rectangle of length 10 and breadth 20 = 60

Complejidad del tiempo: O(1)

Espacio auxiliar: O(1)

Publicación traducida automáticamente

Artículo escrito por ushashree y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *