Times 2 sides that are touching each other [this only works if the rectangle has 2 pairs of equal opposite sides]
example:
if a book is 5 inches [the bottom, or length] by 7 inches [height]
take 5 times 7 = 35.
Your answer is 35 inches2
The length of a rectangle is twice its width. If the perimeter of the rectangle is , find its area.
the length of a rectangle is 5 more then the width. Find the perimeter and the area of the rectangle
156 It is impossible to calculate the area of a rectangle from its perimeter if no other dimension is known. The area of a rectangle is the product of its length and width, and the perimeter is twice the sum of its length and width.
you need length and width length multiply width = area length + length + width + width = perimeter
The perimeter of a rectangle is the distance around the rectangle. The area of a rectangle is the space inside the rectangle. To calculate either one you need the length and the width of the rectangle. To calculate the area multiply the length times the width. To calculate the perimeter add the length+width+length+width (that is the distance all the way around)
Area is length times width, perimeter is twice the sum of length and breadth.
perimeter is the measure around the figure; area is the measure within the figure formula: perimeter: length+length+width+width=perimeter (for square or rectangle) area: length times width= area ( for square or rectangle)
perimeter, area =35.0,66.0 , Travis Garner Rocks!
nope
To find the area of a rectangle, you multiply the length by the width (one side by a different side) Or you could count how many centimeter squares make up the rectangle
The dimensions of a rectangle are the length and the width. With these two measurements , the area of the rectangle can be calculated : Area = length x width. The perimeter can also be found : Perimeter = (2 x length) + (2 x width).
#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"); }