for (int i = 0; i < 5; i++) { if (i >= 4) { break; } Console.WriteLine(i); }
for (int i = 0; i < 5; i++) { Console.WriteLine(i); }