Write algorithm and draw flow chart to find area of a rectangle.
Answers
Answered by
2
The area of rectangle is the area enclosed inside the dimensions of a rectangle. Formula for Area of Rectangle is: Area = Length*Breadth
To calculate the Area of Rectangle we are given the length and breadth of rectangle as input and we use the given formula to calculate the area.
Area of Rectangle Algorithm:
Step 1: Start Step 2: Input length and breadth Step 3: area = length * breadth Step 4: print area Step 5: stop

Similar questions