Rectangle Properties Calculator Perimeter, Area and Diagonal in C#

This C# program calculates three fundamental geometric properties of a rectangle:

1. Perimeter: The total length around the rectangle.
2. Area: The space covered inside the rectangle.
3. Diagonal: The distance between two opposite corners.

How the Program Works:
1. The program prompts the user to enter the width and height of the rectangle.
2. It then calculates the perimeter, area, and diagonal using the following formulas:

- Perimeter = 2 × (width + height)
- Area = width × height
- Diagonal = √(width² + height²) (Using Math.Sqrt())

3. Finally, the results are displayed on the screen in a structured format.

This exercise reinforces the use of basic mathematical operations, input handling, and the Math.Sqrt() method in C#.



Group

C# Basic Data Types Overview

Objective

Write a C# program that calculates the perimeter, area, and diagonal of a rectangle, given its width and height.

Hint: Use Math.Sqrt(x) to calculate the square root.

Example C# Exercise

 Copy C# Code
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

Share this C# Exercise

More C# Practice Exercises of C# Basic Data Types Overview

Explore our set of C# Practice Exercises! Specifically designed for beginners, these exercises will help you develop a solid understanding of the basics of C#. From variables and data types to control structures and simple functions, each exercise is crafted to challenge you incrementally as you build confidence in coding in C#.

  • Quadratic Function Evaluation in C#

    In this exercise, we will write a C# program that evaluates the quadratic function \( y = x^2 - 2x + 1 \) for integer values of \( x \) ranging from -10 to 10. The program will ite...

  • Graphical Representation of a Quadratic Function en C#

    In this exercise, we will create a C# program to visualize the quadratic function \( y = (x - 4)^2 \) for integer values of \( x \) ranging from -1 to 8. Instead of displaying nume...

  • Speed Calculation from Distance and Time in C#

    In this exercise, we will write a C# program that calculates the speed of an object based on user input. The user will enter a distance in meters and the time taken to cover that d...

  • Surface Area and Volume of a Sphere in C#

    In this exercise, we will write a C# program that calculates the surface area and volume of a sphere based on a given radius. The user will input the radius, and the program will c...

  • Character Classification Using Switch in C#

    In this exercise, we will write a C# program that classifies a user-input symbol into one of three categories: a lowercase vowel, a digit, or any other symbol. The user will enter ...

  • Character Classification Using If Statements in C#

    In this exercise, we will write a C# program that classifies a user-input symbol into one of three categories: a lowercase vowel, a digit, or any other symbol. The user will enter ...