139,774 views
34 votes
34 votes
Write a qbasic programme to find the volume of a box asking length,breadth, and height from user

User Fazan Cheng
by
3.3k points

1 Answer

17 votes
17 votes

Answer:

CLS

Input "length of box" ; L

Input "breadth of box" ; B

Input "height of box" ; H

LET Volume(V) = L*B*H

Print Volume

END

User Stcho
by
2.7k points