163k views
10 votes
Complete the flowchart to calculate the area of a rectangle

Complete the flowchart to calculate the area of a rectangle-example-1
User Rstober
by
3.7k points

1 Answer

10 votes
Python Code:
Length=int(input(“Enter length of rectangle: “))
Width=int(input(“Enter width of rectangle: “))
Area=Length*Width
print(Area)
Flow Chart:
(Given in the image below)
Complete the flowchart to calculate the area of a rectangle-example-1
User Hossam Fathy
by
4.0k points