Calculadora De Propiedades De Rectángulos: Perímetro, Área Y Diagonal En C#

Este programa en C# calcula tres propiedades geométricas fundamentales de un rectángulo:

1. Perímetro: La longitud total del rectángulo.

2. Área: El espacio comprendido dentro del rectángulo.

3. Diagonal: La distancia entre dos esquinas opuestas.

Cómo funciona el programa:
1. El programa solicita al usuario que introduzca el ancho y la altura del rectángulo.

2. A continuación, calcula el perímetro, el área y la diagonal mediante las siguientes fórmulas:

- Perímetro = 2 × (ancho + alto)
- Área = ancho × alto
- Diagonal = √(ancho² + alto²) (Usando Math.Sqrt())

3. Finalmente, los resultados se muestran en la pantalla en un formato estructurado.

Este ejercicio refuerza el uso de operaciones matemáticas básicas, el manejo de entradas y el método Math.Sqrt() en C#.



Grupo

Tipos de datos básicos de C#

Objectivo

Escribe un programa en C# que calcule el perímetro, el área y la diagonal de un rectángulo, dados su ancho y altura.

Sugerencia: Usa Math.Sqrt(x) para calcular la raíz cuadrada.

Ejemplo de ejercicio en C#

 Copiar código C#
using System;

class Program
{
    static void Main()
    {
        // Prompt the user to enter the width of the rectangle
        Console.Write("Enter the width of the rectangle: ");
        double width;

        // Validate user input
        while (!double.TryParse(Console.ReadLine(), out width) || width <= 0)
        {
            Console.Write("Invalid input. Please enter a positive number for the width: ");
        }

        // Prompt the user to enter the height of the rectangle
        Console.Write("Enter the height of the rectangle: ");
        double height;

        // Validate user input
        while (!double.TryParse(Console.ReadLine(), out height) || height <= 0)
        {
            Console.Write("Invalid input. Please enter a positive number for the height: ");
        }

        // Calculate the perimeter
        double perimeter = 2 * (width + height);

        // Calculate the area
        double area = width * height;

        // Calculate the diagonal using the Pythagorean theorem
        double diagonal = Math.Sqrt((width * width) + (height * height));

        // Display the results
        Console.WriteLine("\nRectangle Properties:");
        Console.WriteLine($"Perimeter: {perimeter}");
        Console.WriteLine($"Area: {area}");
        Console.WriteLine($"Diagonal: {diagonal:F2}"); // Display diagonal rounded to 2 decimal places
    }
}

 Output

//Example Execution 1:
Enter the width of the rectangle: 6
Enter the height of the rectangle: 8

Rectangle Properties:
Perimeter: 28
Area: 48
Diagonal: 10.00

//Example Execution 2:
Enter the width of the rectangle: 5.5
Enter the height of the rectangle: 3.2

Rectangle Properties:
Perimeter: 17.4
Area: 17.6
Diagonal: 6.30

//Example Execution 3 (Invalid Input Handling):
Enter the width of the rectangle: -4
Invalid input. Please enter a positive number for the width: 4

Enter the height of the rectangle: 0
Invalid input. Please enter a positive number for the height: 7

Rectangle Properties:
Perimeter: 22
Area: 28
Diagonal: 8.06

Comparte este ejercicio de C#

Practica más ejercicios C# de Tipos de datos básicos de C#

¡Explora nuestro conjunto de ejercicios de práctica de C#! Diseñados específicamente para principiantes, estos ejercicios te ayudarán a desarrollar una sólida comprensión de los fundamentos de C#. Desde variables y tipos de datos hasta estructuras de control y funciones simples, cada ejercicio está diseñado para desafiarte gradualmente a medida que adquieres confianza en la programación en C#..