
In order to find the perimeter of a rectangle, we need to measure the sides of the rectangle.
#Perimeter of rectangle formula how to
How to Find the Perimeter of a Rectangle? Hence, equation 2 (l+b) represents the perimeter, where and b represents the length and breadth of the rectangle, respectively. Suppose p is the perimeter of a rectangle, l is the length, and b is the breadth, then the perimeter can be represented in the equation form as :
#Perimeter of rectangle formula plus
Since the opposite sides of a rectangle are equal, the perimeter of a rectangle is twice the length of the rectangle plus twice the breadth of a rectangle. The perimeter of a rectangle can be defined as the sum of all four sides of a rectangle. With the help of Cuemath online learning classes, you can explore the different geometric shapes using visual simulations that will let you solve complex problems related to rectangles in the future. Hence it is vital to have strong fundamentals. The rectangle is one of the simplest shapes to study, but questions related to a rectangle in concepts like Trigonometry and Calculus can be a bit complex. The word rectangle comes from the Latin word ‘rectangulus,’ which means right angle. The two sides which are longer are known as the length of the rectangle, while the shorter side is the breadth of a rectangle.

The sides of the rectangle intersect with each other to form a right angle. The opposite sides of a rectangle are of the same length and parallel to each other, i.e., all the points are equidistant. What is a Rectangle?Ī rectangle is a 2D geometric shape that has four sides and four vertices or corners. But first, let us get started with some basic concepts. We will be studying how to find the area of a rectangle and calculate the perimeter of a rectangle. In this blog, we are going to explore the shape rectangle. These shapes are then used in problem-solving questions of various topics such as trigonometry, algebra, calculus, etc. It also helps us understand the different properties of these shapes. Printf("Perimeter of Rectangle : %0.Geometry is one of the most important topics in Mathematics, which deals with various shapes such as square, rectangle, etc. * Perimeter of Rectangle = 2 X(Length + Width) */ * C Program to find perimeter of a rectangle At last, it prints the perimeter of rectangle on screen using printf function.

To find the perimeter of rectangle we add the length and width of rectangle and then multiply it with 2(as per formula given above) and store perimeter in a floating point variable. Printf("Area of Rectangle : %0.4f\n", area) Ĭ Program to find the perimeter of the rectangleīelow program, first takes length and width as input from user using scanf function and stores in 'length' and 'width' variables. * C Program to calculate area of a rectangle At last, it prints the area of rectangle on screen using printf function. To find the area of rectangle we multiple the length and width of rectangle and store area in a floating point variable. Below program, first takes length and width as input from user using scanf function and stores in 'length' and 'width' variables. To calculate area of a rectangle, we need length and width of a rectangle. W is the length of smaller side of rectangleĬ Program to find the area of the rectangle L is the length of longer side of rectangle As opposite sides of a rectangle are equal we can calculate perimeter of rectangle as follows: To find the perimeter of a rectangle, we should add the length of all four sides of rectangle.
