Computer Science, asked by BakaHaka, 11 months ago

Write a program to find the area of four walls(QBASIC)

Answers

Answered by priyanshu6969
5

Answer:

#QBASIC

Explanation:

input "length";l

input "breadth":b

input "height";h

a = 2*h*(l+b)

print "area";a

end

Similar questions