Chapter 02 Loop Summary

Loops

For loop - repeats when you know the number of times to repeat


for (statement to start the loop; condition that evaluates to true or false; statement to run when the loop repeats)
{
// do something
}

What you need to know:

FOR coding helps: (but not needed explicitly for the test)

Loop Flow Charting:

Loop approach: (No need to memorize. Just figure out which approach works best for you)

Structure Summary: (You should know how to create each of these structures)

Theory Summary:

a