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
Содержание A1SD51S
Страница 183: ...11 13 11 13 MELSEC Q 11 INSTRUCTIONS AND FUNCTIONS RUN Before swap A 0 H924 A 1 H1159 After swap A 0 H1159 A 1 H924 OK...
Страница 331: ...11 161 11 161 MELSEC Q 11 INSTRUCTIONS AND FUNCTIONS REMARK See the CON ON OFF STOP and ZOPEN functions and Section 7 4...
Страница 557: ...11 387 11 387 MELSEC Q 11 INSTRUCTIONS AND FUNCTIONS REMARK See the CHR SPACE and SPC functions...
Страница 629: ...11 459 11 459 MELSEC Q 11 INSTRUCTIONS AND FUNCTIONS REMARK See the ZOPEN ZSEND and ZCNTL instructions and Section 7 3 4...
Страница 645: ...11 475 11 475 MELSEC Q 11 INSTRUCTIONS AND FUNCTIONS REMARK See the ZEVENT ZSIGNAL and DEF ZEVENT instructions...