int bats = 10; for (int i = 0; i <= 10; i++) { if (i < 9) { continue; } // this will be skipped until i is no longer less than 9 Console.WriteLine(i); } // this prints 9 and 10