|
Do you think that the change part of a A good answer might be:Yes. |
Omitting the changeSyntactically you can omit the change part. This means that if the Java compiler sees: it will not complain. It is now your responsibility to put statements that make a change somewhere into the loop body. For example:for ( count = 0; count < 25; )
would work fine.
(Although in this case it would be better to have the change done in the for.)
|
QUESTION 12:
Can a |