Answers for "3.5.8: Rectangle, Part 3"

0

3.5.8: Rectangle, Part 3

length = int(input("What is the length?: "))
width = int(input("What is the width?: "))

area = length*width
perimeter = 2*(length+width)

print (("Area: ") + str(area))
print (("Perimeter: ") + str(perimeter))
Posted by: Guest on December-16-2020
0

3.5.8: Rectangle, Part 3

line 2 should contain "50"
Posted by: Guest on October-06-2021

Browse Popular Code Answers by Language