CSC 160 - Chapter 5 Quick Reference

Chapter 5 "Looping"

This chapter covers the basics of looping with while, do-while, and for loops.

General Terms

increment/decrement operators postfix/prefix pre-test/post-test counters
sentinel nested loops infinite loop

C++ Syntax/Constructs

++, -- while do for
break continue

Concepts

Important concepts covered include:


Disclaimer: The goal of this "cheat sheet" is to review the more important concepts in the chapter. The exclusion of any material in the chapter from this "cheat sheet" does not mean that you are not responsible for that material.