Previous Page
Next Page

Chapter 5
Using Compound Assignment and Iteration Statements
After completing this chapter, you will be able to:

In Chapter 4, “Using Decision Statements,” you learned how to use the if and switch constructs to selectively run statements. In this chapter, you'll see how to use a variety of iteration (or looping) statements to repeatedly run one or more statements. When you write iteration statements, you usually need to control the number of iterations that you perform. You can achieve this by using a variable, updating its value with each iteration, and stopping the process when the variable reaches a particular value. Therefore, you'll also learn about the special assignment operators that you should use to update the value of a variable in these circumstances.


Previous Page
Next Page