User`s manual
A-7
Statement/Function Examples Page
DATA
item list
Hold data for access by READ
statement
DATA 22,33,11,1.2345
DATA "HALL ","SMITH ","DOE
3/10
READ
variable list
Assign value(s) to the specified
variable(s), starting with
current DATA element.
READ A,A1,A2,A3
READ A$,B$,C$,D
3/10-11
RESTORE
Reset DATA pointer to first
item in first DATA statement.
RESTORE
3/11
Field Specifiers for PRINT USING statements
Numeric
Character Function Example Page
#
Numeric field (one digit digit
per #).
###
3/4
.
Decimal point position.
##.###
3/4
+
Print leading or trailing signs
(plus for positive numbers,
minus for negative numbers).
+#.###
#.###+
-#.###
#.###-
3/5
–
Print trailing sign only if value
printed is negative.
###.##-
3/5
**
Fill leading blanks with
asterisk.
**###.##
3/4
$$
Place dollar sign immediately
to left of leading digit
$$####.##
3/4
**$
Dollar sign to left of leading
digit and fill leading blanks
with asterisks.
**$####.##
3/4
↑↑↑↑
↑↑↑↑↑↑↑↑
↑↑↑↑
Exponential format, with one
significant digit to left of
decimal.
#.##↑↑↑↑
↑↑↑↑↑↑↑↑
↑↑↑↑
3/4










