5.3 for Repetition Statement
Section 5.2 presented the essentials of counter-controlled repetition. The while
statement can be used to implement any counter-controlled loop. Java also provides the for repetition statement, which specifies the counter-controlled-repetition details in a single line of code. Figure 5.2 reimplements the application of Fig. 5.1 using for.
When the for statement (lines 10–11) begins executing, the control variable counter is declared and initialized to 1
. (Recall from Section 5.2 that the first two elements of counter-controlled repetition ...
Get Java How to Program (early objects), 9/e now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.