Chapter 02 Summary

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
}

For facts:

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