Pseudocode Syntax Cheatsheet
Pseudocode Syntax Cheatsheet
6. Iterations (Repeat)
6A. FOR ... TO ... NEXT ...
- Used when the number of
iterations is fixed.
3. Comparison operators FOR Counter <- 1 TO 10
OUTPUT Counter
NEXT