11 - 85 11 - 85
MELSEC-Q
11 INSTRUCTIONS AND FUNCTIONS
Program Example
10 ' Branches according to the condition
20 INPUT "X=";X
:
' Enter a value
30 IF X>=0 AND X<=10 GOTO 50 ELSE 60
:
' Branch to line 50 if X is 0 to 10,
50 PRINT "Within range from 0 to 10!": END
:
' otherwise branch to line 60
60 PRINT "Out of range!":END
RUN
X=? 1
Within range from 0 to 10!
OK
RUN
X=? 20
Out of range!
OK
REMARK
See Section 3.7.
The correct result may not be obtained if single precision or double precision values
are compared by an equal sign in <conditional expression>.
For details, see remarks in Section 3.7.2.