5.4 Examples Using the for
Statement
The following examples show techniques for varying the control variable in a for
statement. In each case, we write only the appropriate for
header. Note the change in the relational operator for the loops that decrement the control variable.
Vary the control variable from
1
to100
in increments of1
.for (unsigned int i{1}; i <= 100; i++)
Vary the control variable from
100
down to1
in decrements of1
.for (unsigned int i{100}; i >= 1; i--)
Vary the control variable from
7
to77
in increments of7
.for (unsigned int i{7}; i <= 77; i += 7)
Vary the control variable from
20
down to2
in decrements of2
.for (unsigned int i{20}; i >= 2; i -= 2)
Vary the control variable over the values
2
,5
,8
,11
Get C++ How to Program, 10/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.