home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Technotools
/
Technotools (Chestnut CD-ROM)(1993).ISO
/
misc_pto
/
basic-c
/
test3.bas
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
BASIC Source File
|
1988-12-21
|
249 b
|
9 lines
print "This program computes the volume of a cube."
input "Enter length of first side ", l
input "Enter length of second side ", w
input "Enter length of third side ", d
t = l * w * d
print "Volume is ",t
input "press RETURN to EXIT", y
end