Write a program to find the area of four walls(QBASIC)
Answers
Answered by
5
Answer:
#QBASIC
Explanation:
input "length";l
input "breadth":b
input "height";h
a = 2*h*(l+b)
print "area";a
end
Similar questions