WAP to find the volume of box
CLS
INPUT " Enter Length "; L
INPUT " Enter Breadth "; B
INPUT " Enter Height "; H
V = L * B * H
PRINT " Volume of box "; V
END
INPUT " Enter Length "; L
INPUT " Enter Breadth "; B
INPUT " Enter Height "; H
V = L * B * H
PRINT " Volume of box "; V
END
Comments
Post a Comment