Skip to content

Commit af13a7f

Browse files
authored
Create room
1 parent 7ebb5b9 commit af13a7f

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

room

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
Find the area of room with formula area*length
2+
3+
-
4+
5+
length = float(input("Enter length(m): "))
6+
width = float(input("Enter width(m): "))
7+
area = (length*width)
8+
print("The area of the room is",area,"m")
9+
10+
note - I use meter as unit of measurement.

0 commit comments

Comments
 (0)