Specifies output format of numeric data.
+ F number of digits
| ---------------------
| Single character; 0~9
SET |
| E number of digits
| ---------------------
| single character; 0~9
+ N
SET F3
F number of digits
Specifies number of decimal places.
E number of digits
Specifies number of significant digits.
N
Cancels current specification.
SET N
cancels both specifications.10 A = 10/3
20 SET F
30 PRINT A
40 SET E2
50 PRINT A
60 END
RUN
EXE
3.33
EXE
3.33
3.3E+00
EXE
3.3E+00
3.333333333_
EXE
3.33333333
Result of 10/3 displayed with 2 decimal places, 2 signficant digits, and specification cancelled.