11 - 373 11 - 373
MELSEC-Q
11 INSTRUCTIONS AND FUNCTIONS
Program Example
10 ' This program searches for a value in an array
20 DIM A%(10)
:
'Defines an array
30 FOR I=0 TO 10
:
'Repeats from I = 1 to 10
40 A%(I)=I+3
:
'Stores values in the array variable
50 PRINT "A%(";I;")=";A%(I)
60 NEXT I
70 B=SEARCH(A%,6,0,3)
:
'Searches for 6
80 PRINT "6 is found in A%(";B;")"
:
'Displays the result
90 END
RUN
A%(0)= 3
A%(1)= 4
A%(2)= 5
A%(3)= 6
A%(4)= 7
A%(5)= 8
A%(6)= 9
A%(7)= 10
A%(8)= 11
A%(9)= 12
A%(10)= 13
6 is found in A%(3)
OK