Lesson 7: for loops & nested loops
Last lesson we built a loop from three scattered parts: counter initialization, condition and advance. for (int i = 0; i < n; i++) packs all three into one line — init; condition; step — making it the natural choice when the number of rounds is known in advance. We'll also learn nested loops: a loop