Added the Rectangular Solid program

This commit is contained in:
jdavilabeaz2401 2025-11-26 13:40:24 -05:00
parent 7159b59de0
commit 935cecbb7f

8
rectanglar-solid01.py Normal file
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}")