Write a program to get length breadth and height of a rectangular room and calculate its total surface area
Answers
Answered by
0
a progam to get length breadth and height of a rectangular room and calculate its total surface area?
Answered by
0
in python:
l=int(input("length="))
b=int(input("breadth="))
h=int(input("height="))
s=2(lb+bh+hl)
print("surface area=",s)
Similar questions