Write an algorithm to calculate the area of rectangke inputting length and breadth
Answers
Answered by
2
An algorithm to find the area and perimeter of rectangle.
- START
- Input Length of Rectangle as L
- Input Bredth of Rectangle as B
- Calculate Area= L * B
- Calculate Circumference Perimeter = 2 * ( L+ B)
- Print Value of Area and Perimeter
- END / STOP
Similar questions