Added the Rectangular Solid program

This commit is contained in:
cmitchell2301 2025-12-14 18:51:38 -05:00
parent 8c58c445e8
commit 97e1f1f3d8

View file

@ -0,0 +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 "))
volumeOfRectangle = length * width * height
print(f"Area = {volumeOfRectangle:.2f}")