home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC User 2001 August
/
APC_Aug2001_CD2.iso
/
features
/
devtools
/
files
/
lb202win.exe
/
LB202W.EXE
/
ASCII.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
|
1992-03-02
|
332 b
|
16 lines
' This program ask for a string and then
' displays a list of ASCII codes for each
' character in the entered string
input "Please enter a string >"; entry$
for index = 1 to len(entry$)
result$ = result$ + str$(asc(mid$(entry$,index,1))) + chr$(13)
next index
print result$