Computer Science, asked by saraswotis387, 1 month ago

1. Write a QBASIC program to find the volume of a rectangular box.​

Answers

Answered by BrainlyProgrammer
6

Answer:

CLS

PRINT "ENTER SIDES OF RECTANGULAR BOX"

INPUT L

INPUT B

INPUT H

VOL= L*B*H

PRINT "VOLUME =";VOL

END

Similar questions