Computer Science, asked by suryansh282, 9 months ago

write a program to input length and width of a rectangle and find the area of rectangle.area of rectangle= l×b with flow chart​

Answers

Answered by nitindhadve1994
1

Answer:

जिल्ह्यातील प्रदेशाच्या उंचीचे वितरण

Answered by Shs07
1

Program In Python 3.x

#To print area of rectangle, values entered by user.

>>> l = float(input("Enter length :"))

>>> b = float(input("Enter breadth:"))

>>> area = l*b

>>>print("Area of given rectangle is", area )

Similar questions