|
|
|
|
for(initalize; condition; increment)
The reason it doesn't return after the first iteration is because the loop does not end until it reaches the break condition. This might help explain better http://www.cplusplus.com/doc/tutorial/control/ The for loop The for loop is designed to iterate a number of times. Its syntax is: for (initialization; condition; increase) statement; Like the while-loop, this loop repeats statement while condition is true. But, in addition, the for loop provides specific locations to contain an initialization and an increase expression, executed before the loop begins the first time, and after each iteration, respectively. Therefore, it is especially useful to use counter variables as condition. It works in the following way: initialization is executed. Generally, this declares a counter variable, and sets it to some initial value. This is executed a single time, at the beginning of the loop. condition is checked. If it is true, the loop continues; otherwise, the loop ends, and statement is skipped, going directly to step 5. statement is executed. As usual, it can be either a single statement or a block enclosed in curly braces { }. increase is executed, and the loop gets back to step 2. the loop ends: execution continues by the next statement after it. Here is the countdown example using a for loop:
The three fields in a for-loop are optional. They can be left empty, but in all cases the semicolon signs between them are required. For example, for (;n<10;) is a loop without initialization or increase (equivalent to a while-loop); and for (;n<10;++n) is a loop with increase, but no initialization (maybe because the variable was already initialized before the loop). A loop with no condition is equivalent to a loop with true as condition (i.e., an infinite loop). Because each of the fields is executed in a particular time in the life cycle of a loop, it may be useful to execute more than a single expression as any of initialization, condition, or statement. Unfortunately, these are not statements, but rather, simple expressions, and thus cannot be replaced by a block. As expressions, they can, however, make use of the comma operator (,): This operator is an expression separator, and can separate multiple expressions where only one is generally expected. For example, using it, it would be possible for a for loop to handle two counter variables, initializing and increasing both:
This loop will execute 50 times if neither n or i are modified within the loop: http://www.cplusplus.com/doc/tutorial/control/for_loop.png n starts with a value of 0, and i with 100, the condition is n!=i (i.e., that n is not equal to i). Because n is increased by one, and i decreased by one on each iteration, the loop's condition will become false after the 50th iteration, when both n and i are equal to 50. |