1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-06 02:20:25 +00:00
QB64-PE/tests/qbasic_testcases/pete/asciiconversion.bas
Matthew Kilgore 9ee89d6ff4 Add QBasic tests
These tests use a variety of sample code (with some of the larger files
removed, so they are not complete!) and verifies that they all compile
successfully.
2022-04-28 23:00:07 -04:00

45 lines
809 B
QBasic

CLS
'Start of Declarations
DIM num AS INTEGER
DIM code AS STRING
DIM code1 AS INTEGER
DIM num1 AS STRING
'End of Declarations
start:
PRINT "ASCII code ----> ASCII Character & ASCII Character ----> ASCII Code Converter"
PRINT
PRINT "1) ASCII code ----> ASCII Character"
PRINT
PRINT "2) ASCII Character ----> ASCII code"
PRINT
INPUT "Enter your choice"; selection
SELECT CASE selection
CASE 1
CLS
PRINT "ASCII code ----> ASCII Character"
PRINT
INPUT "Enter ASCII code"; num
PRINT
code = CHR$(num)
PRINT "The ASCII Character is:"; code
CASE 2
CLS
PRINT "ASCII Character ----> ASCII Code Converter"
PRINT
INPUT "Enter ASCII Character"; num1
PRINT
code1 = ASC(num1)
PRINT "The ASCII Code is:"; code1
CASE ELSE
PRINT "Invalid Selection"
GOTO start
END SELECT