|
What is the smallest value of inc such that the loop body will execute only one time? Confirm your answer by testing it with the program. A good answer might be:21 |
Counting Down
Recall the general form of a The change can be any statement. It can, for example, decrease the control variable, as in this example:for ( initialize ; test ; change ) loopBody ;
|
QUESTION 10:
Would the output of this program be any different if the expression
|