Is it possible to count down by an amount other than one?
Answer:
Sure. The loop control variable could be decremented by any integer amount.
Live Code!
Here is some code that illustrates changing the loop control variable by an amount other than one.
(The output window sometimes shows messages that would not be printed by the example code.)
Each iteration of the loop subtracts
a positive value (called a decrement) from
the loop control variable.
QUESTION 7:
Could you do exactly the same thing by adding a negative value to the loop control variable?