Computer Science, asked by rubys225544, 21 hours ago

write an Algorithm to calculate the area of a rectangle for given breadth and length

Answers

Answered by MichMich0945
2

Equation: lb

Algorithm:

  1. Start.
  2. b = n ( use provided value )
  3. l = m ( use provided value )
  4. Area = l * b
  5. Print Area.
  6. Exit.

Hope this helps you!

Answered by varshaparjapati2002
1

Answer:

Length × Breadth

Explanation:

length = 20 cm

breadth = 12 cm

area = l×b

= 20×12

= 240

Similar questions