           Volume Math/Science Calculation Program
                       for the TI-81
                     By: Justin G. Camp
                 E-Mail: justin@acsworld.net
                http://justin_camp.tripod.com
                     Programmed 5/26/00

=======================================================================

A LITTLE NOTE: These are my original programs. You may redistribute
them, but you must give me credit by including this original
documentation with them. Unlike many other programmers, I do not waste
your limited memory by including a reference to myself as the creator,
so if you redistribute them, you may not either, nor take credit for
them in any way, shape, or form.

If you need help, please refer to the original help file
(ti81help.txt). If you need further assistance, contact me at my email
address: <justin@acsworld.net> - Please refer to the help file FIRST!
Please visit my webpage at:       http://justin_camp.tripod.com
Thank you for downloading my programs and I hope you enjoy them!!!!!

=======================================================================

HERE IS THE CODE (DON'T WORRY IF IT TAKES UP ANTOHER LINE):
               > stands for the Sto> Key!
       * means that you hit the multiplication key!
On the last line... There are 13 spaces & ^3 means that you hit the
               MATH key and press the 3 key!

:Clrhome
:Disp "V=L*W*H"
:Disp "LENGTH"
:Input L
:Disp "WIDTH"
:Input W
:Disp "HEIGHT"
:Input H
:L*W*H>V
:Disp V
:Disp "             CM^3"
