Chapter 5. Using Compound Assignment and Iteration Statements

After completing this chapter, you will be able to:

  • Update the value of a variable by using compound assignment operators.

  • Write while, for, and do iteration statements.

  • Step through a do statement and watch as the values of variables change.

In Chapter 4 you learned how to use the if and switch constructs to run statements selectively. In this chapter, you’ll see how to use a variety of iteration (or looping) statements to run one or more statements repeatedly. 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 ...

Get Microsoft® Visual C#® 2010 Step by Step 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.