Computer Science, asked by ptseilhan5845, 10 months ago

Write a program to get length breadth and height of a rectangular room and calculate its total surface area

Answers

Answered by human32
0

a progam to get length breadth and height of a rectangular room and calculate its total surface area?

Answered by shine2710
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