diff --git a/homework06/git-practice/rectanglar-solid01.py b/homework06/git-practice/rectanglar-solid01.py deleted file mode 100644 index 3a4779e..0000000 --- a/homework06/git-practice/rectanglar-solid01.py +++ /dev/null @@ -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}") \ No newline at end of file diff --git a/homework06/git-practice/rectangle01.py b/homework06/git-practice/rectangle01.py deleted file mode 100644 index 2b1b70e..0000000 --- a/homework06/git-practice/rectangle01.py +++ /dev/null @@ -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}") \ No newline at end of file