1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-06-29 10:30:36 +00:00
QB64-PE/internal/help/FOR...NEXT.txt
SteveMcNeill 33adc04fc4 Add temp folder to repo. It's necessary as well!
Just more initial setting on... nothing much to see here.
2022-04-28 13:39:56 -04:00

73 lines
4 KiB
Plaintext

The [[FOR]] statement creates a counter loop using specified start and stop numerical boundaries. The default increment is + 1.
{{PageSyntax}}
: [[FOR]] {{Parameter|counterVariable}} = {{Parameter|startValue}} [[TO]] {{Parameter|stopValue}} [{{KW|STEP}} {{Parameter|increment}}]
:: ''{code}''
:: ⋮
: [[NEXT]] [{{Parameter|counterVariable}}]
{{Parameters}}
* The [[FOR]] {{Parameter|counterVariable}} name is required to define the counter span and may also be used after the NEXT keyword.
* The {{Parameter|startValue}} [[TO]] {{Parameter|stopValue}} can be any literal or variable numerical type. Both values are required.
* [[STEP]] can be used for a loop {{Parameter|increment}} other than the default ''plus 1 and can be any positive or negative literal or variable numerical value as long as the STEP value corresponds to the loop's {{Parameter|startValue}} and {{Parameter|stopValue}}.
* [[NEXT]] ends the [[FOR]] loop code block and increments the counter to the next value even when it exceeds the stop limit.
{{PageDescription}}
* [[FOR...NEXT]] counter loops must be within the proper start, stop and increment values or the entire loop code block will not be executed.
* Avoid changing the FOR {{Parameter|counterVariable}}'s value inside of the loop. This obfuscates code and is a poor programming practice.
* Once the loop has been started, changing the variables holding the {{Parameter|startValue}}, {{Parameter|stopValue}} or {{Parameter|increment}} value will not affect loop execution.
* '''If the [[STEP]] ''increment'' value does not match the {{Parameter|startValue}} [[TO]] {{Parameter|stopValue}} the FOR loop block will be ignored.'''
** If {{Parameter|startValue}} is less than {{Parameter|stopValue}}, use the default increment or positive [[STEP]] value or the loop will not be executed.
** If {{Parameter|startValue}} is more than {{Parameter|stopValue}}, use a negative [[STEP]] interval or the loop will not be executed.
** The [[STEP]] {{Parameter|increment}} value cannot be changed inside of the loop.
* Use '''[[EXIT]] FOR''' to leave a FOR loop early when a certain condition is met inside of the loop.
* The [[NEXT]] counter variable name is not required. NEXT loop increments can be separated by colons in nested FOR loops.
* '''NOTE: When the FOR loop is exited after the {{Parameter|stopValue}} is reached, the {{Parameter|counterVariable}}'s value will be {{Parameter|stopValue}} + 1 (or {{Parameter|stopValue}} + {{Parameter|increment}})
* '''Beware of FOR loop counts that exceed the {{Parameter|counterVariable}} type limits and may repeat without error in QB64.'''
** For example, if {{Parameter|counterVariable}} is of type [[INTEGER]] and the stop limit exceeds 32767, the {{Parameter|counterVariable}} will reset back to -32768 and loop endlessly.
{{PageExamples}}
''Example 1:'' Adding all of the even numbers from 10 to 0.
{{CodeStart}} '' ''
FOR i = 10 TO 0 {{Cl|STEP}} -2
totaleven% = i + totaleven%
PRINT totaleven%;
NEXT
PRINT "After loop, i ="; i '' ''
{{CodeEnd}}
{{OutputStart}}10 18 24 28 30 30 After loop, i = -2
{{OutputEnd}}
:''Explanation:'' The loop counts down from 10 to every even value below it. The counter keeps stepping down until the FOR stop limit is reached or exceeded. Note that the value of i is -2 after the loop is exited. [[NEXT]] always increments the counter one last time.
''Example 2:'' How an entire FOR loop block is ignored when the start and stop limits do not match the default or [[STEP]] increment.
{{CodeStart}} '' ''
{{Cl|PRINT}} "hi"
{{Cl|FOR...NEXT|FOR}} i = 10 {{Cl|TO}} 1 'requires a negative {{Cl|STEP}} value
{{Cl|PRINT}} "lo"
{{Cl|NEXT}}
{{Cl|PRINT}} "bye"
{{CodeEnd}}
{{OutputStart}}hi
bye {{OutputEnd}}
<!-- removed redundant example as Example 2 above shows exactly the same technique
''See Example:''
* [http://qb64.net/wiki/index.php?title=Controller_Devices#Example Example that shows how ignoring bad FOR loops can work to a program's advantage without errors.] -->
{{PageSeeAlso}}
* [[STEP]]
* [[DO...LOOP]], [[WHILE...WEND]]
{{PageNavigation}}
<