SOY learning - c# for beginners Lesson4: for loop, break and continue keywords >for It is a loop that repeats an action you coded, using 3 statements to operate: continue A key word that continues a cycle ^example for (int i; i < 100; i++) { if (i == 10) { continue; } Console.WriteLine(i); } ^end The for loop starts, but this time if() stops the cycle when i = 10 and then continues it.