Completion requirements
Read this chapter, which explains while loops. This is in contrast to how a do-while loop works, which we will discuss later. In a do-while loop, the body of the loop is executed at least one time, whereas in a while loop, the loop may never execute if the loop condition is false.
13. End of the Chapter
Answer:
No. Counting loops can count up by two's, for example. This is a topic for a future chapter.
End of the Chapter
We have reached the limit of this chapter. You may wish to review the following. Click on a subject that interests you to loop back to where it was discussed.
- cycles Usefulness of cycles in machinery and programs.
- while statement, syntax Syntax of a
while
loop. - while statement, semantics Semantics of a
while
loop. - loops, coordinating three things Three things that must be coordinated.
- loop control variable The loop control variable.
- counting loop Counting loops.