This commit is contained in:
cmitchell2301 2025-12-14 19:22:58 -05:00
parent 195a455032
commit fc26ebd5f8
5 changed files with 25 additions and 19 deletions

View file

@ -0,0 +1,7 @@
length = float(input("Enter a value for the length "))
width = float(input("Enter a value for the width "))
areaOfRectangle = length * width
print(f"Area = {areaOfRectangle:.1f}")