We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7ebb5b9 commit af13a7fCopy full SHA for af13a7f
1 file changed
room
@@ -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