Skip to main content
Logo image

Section 10.7 Summary

Today, we learned about:
  • Syntax of the switch() statement
  • You can nest loops inside loops. Just make sure to:
    • Use a new loop counter for each loop
    • Remember your curly braces
  • You can nest if statements inside loops or loops inside if statements.