6. 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