functional overview
Repeat process.
Details of Functions
First time only,initial valueset to repeat count.
Control statement/repeat end is executed, it will return to this process and add to the iteration countStep countwill be added.
Repeat counts andComparison figuresandtermsis satisfied, proceed to the next logic.
termsIf not satisfied, then,Control statement/repeat end Proceed to the next logic in the
- note
- If the process is built in the following steps, the message "1" and "3" will be displayed twice in total.
procedure Comment logic name (programming language) Details of processing, etc. 1 Repeat start Control statement/For(repeat start) Initial value "1".
Step count "2".
Condition "<".
Comparison value "4".2 message indication Message/Toast display of "Repeat Start."
Results are displayed on screen.3 repeat Control statement/repeat end 4 end of process
parameter
- argument (e.g. function, program, programme)
-
initial value numeric data
Specifies the initial value of the repeat count.Step count numeric data
Specifies the value to be added to the repeat count each time it is repeated.terms Repeat counts andComparison figuresSpecify the conditions under which the relationship between the two is true.
- = (after a noun, adjective stem, onomatopoeic-mimetic word, etc.)
- >=
- ≦
- >
- <
- ≠
Comparison figures numeric data
Specifies the value to be compared with the repeat count.
- return value
-
numeric data
Returns a repeat count.