If the perimeter is 32 sq cm, there is a very serious problem since the perimeter is a linear measure, not an area!
Leaving that aside, the length of the rectangle is 10 cm and the breadth is 6 cm.
#include<stdio.h> void main() { float length, breadth, area, perimeter; printf("Enter the length & breadth of a Rectangle\n(length breadth): "); scanf("%f %f",&length,&breadth); area=length*breadth; perimeter=2*(length+breadth); printf(" Area of the Rectangle=%0.3f\n",area); printf("Perimeter of the Rectangle=%0.3f\n",perimeter); printf("(Press ENTER to exit.)"); getch(); printf("\n"); }
Area is length times width, perimeter is twice the sum of length and breadth.
The perimeter is the sum of its 4 sides and its area is length times width
When the breadth of a rectangle is doubled, the area of the rectangle also doubles. The area of a rectangle is calculated by multiplying its length by its breadth (Area = Length × Breadth). Therefore, if the original breadth is increased to twice its size, the new area becomes Area = Length × (2 × Breadth), resulting in double the original area.
Area of rectangle = length * breadth
#include<stdio.h> void main() { float length, breadth, area, perimeter; printf("Enter the length & breadth of a Rectangle\n(length breadth): "); scanf("%f %f",&length,&breadth); area=length*breadth; perimeter=2*(length+breadth); printf(" Area of the Rectangle=%0.3f\n",area); printf("Perimeter of the Rectangle=%0.3f\n",perimeter); printf("(Press ENTER to exit.)"); getch(); printf("\n"); }
Area is length times width, perimeter is twice the sum of length and breadth.
Well, isn't that just a happy little problem to solve! To find the area of a rectangle, you multiply the length by the breadth. And to find the length, you can use the formula: length = (perimeter - 2 * breadth) / 2. Just remember, there are no mistakes, only happy accidents in math!
for area we should multiple length X breadth for perimeter we should do 2x(LxB)
The perimeter is the sum of its 4 sides and its area is length times width
When the breadth of a rectangle is doubled, the area of the rectangle also doubles. The area of a rectangle is calculated by multiplying its length by its breadth (Area = Length × Breadth). Therefore, if the original breadth is increased to twice its size, the new area becomes Area = Length × (2 × Breadth), resulting in double the original area.
If you do not know the length or breadth of a rectangle, you cannot know the area. If you do not know the area of a rectangle, you cannot know the length and breadth. To know the length and breadth of a rectangle, you have to know some other contributing factor in the equation. If you don't, measure it!
Divide the area by the length of the rectangle
All you need to do is length x breadth = area
length*breadth
Area = Length * Breadth So 4000 = 80 * Breadth so that Breadth = 4000/80 = 50 yards. Then perimeter = 2*L + 2*B = 2*80 + 2*50 = 160+100 = 260 yards.
Perimeter equals to 2 times the length plus 2 times the breadth. Area equals to length multiply by breadth