IDNLearn.com is the perfect place to get detailed and accurate answers to your questions. Ask anything and receive prompt, well-informed answers from our community of experienced experts.

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.

We appreciate your participation in this forum. Keep exploring, asking questions, and sharing your insights with the community. Together, we can find the best solutions. IDNLearn.com is committed to providing the best answers. Thank you for visiting, and see you next time for more solutions.