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
1
Answer:
जिल्ह्यातील प्रदेशाच्या उंचीचे वितरण
Answered by
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
Math,
5 months ago
English,
5 months ago
English,
5 months ago
Social Sciences,
10 months ago
Geography,
1 year ago