3 - 34 3 - 34
MELSEC-Q
3 LET'S CREATE AND EXECUTE A PROGRAM
The spacing is always constant if the
TAB function is used.
10 INPUT A$
20 INPUT B$
30 PRINT A$,B$
40 PRINT A$;TAB(20);B$
RUN
? 1234567
? 3478
1234567 3478
1234567 3478
OK
RUN
? 123456789012345
? 1000
123456789012345 1000
123456789012345 1000
OK
When the TAB function is used, the display positions will not vary depending on
the display contents as with when ";" or "," is used.
(2) SPC Function
When the SPC function is used, a number of blank spaces can be displayed from
the last displayed character position. Use ";" (semicolon) as a separator for the
SPC function. When the SPC function is used, the number of spaces will not vary
depending on the display contents as with when ";" or "," is used.
Example
10 INPUT A$
20 INPUT B$
30 PRINT A$,B$
40 PRINT A$;SPC(5);B$
RUN
? 1234567
? 3478
1234567 3478
1234567 3478
OK
RUN
? 123456789012345
? 1000
123456789012345 1000
123456789012345 1000
OK
Constant if the SPC function is used.
PRINT " A" ; SPC(6) ; " B" ; SPC(5) ; " C"
A B C
5
characters
6
characters