Computer Science, asked by Aishwarya7525, 1 year ago

Write an algorithm to calculate the area of rectangke inputting length and breadth

Answers

Answered by PunithaPriya
2

An algorithm to find the area and perimeter of rectangle.

  1. START
  2. Input Length of Rectangle as L
  3. Input Bredth of Rectangle as B
  4. Calculate Area= L * B
  5. Calculate Circumference Perimeter = 2 * ( L+ B)
  6. Print Value of Area and Perimeter
  7. END / STOP
Similar questions