diff --git a/rectanglar-solid01.py b/rectanglar-solid01.py new file mode 100644 index 0000000..4aaa83c --- /dev/null +++ b/rectanglar-solid01.py @@ -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}") \ No newline at end of file