Corrected name of one program

This commit is contained in:
cmitchell2301 2025-12-14 19:27:35 -05:00
parent fc26ebd5f8
commit ba1c8d6d86
2 changed files with 0 additions and 15 deletions

View file

@ -1,8 +0,0 @@
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"Volume = {volumeOfRectangle:.1f}")

View file

@ -1,7 +0,0 @@
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}")