IDNLearn.com connects you with experts who provide accurate and reliable answers. Get the information you need from our community of experts who provide accurate and thorough answers to all your questions.

Write an algorithm to get the value of length and breadth of a rectangle from the user and find its area. inn qbasic

Sagot :

Answer:

IN PYTHON ::

x=int(input('Enter length:'))

y=int(input('Enter width:'))

print('Area of the rectangle is', x*y,'squared units')

I hope it will be useful.