Corrected text seen by the user

This commit is contained in:
cmitchell2301 2025-12-14 19:12:47 -05:00
parent 9f21328c3c
commit b0f5d943be
2 changed files with 7 additions and 7 deletions

View file

@ -1,8 +1,8 @@
length = float(input("Enter a value for length "))
width = float(input("Enter a value for width "))
height = float(input("Enter a value for height "))
length = float(input("Enter a value for the length "))
width = float(input("Enter a value for the width "))
height = float(input("Enter a value for the height "))
volumeOfRectangle = length * width * height
print(f"Area = {volumeOfRectangle:.2f}")
print(f"Volume = {volumeOfRectangle:.1f}")

View file

@ -1,7 +1,7 @@
length = float(input("Enter a value for length "))
width = float(input("Enter a value for width "))
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:.2f}")
print(f"Area = {areaOfRectangle:.1f}")