الرجوع
تسجيل الدخول

What is the output of this code?

for (int i = 0; i < 5; i++) {
    if (i == 2) continue;
    if (i == 4) break;
    System.out.print(i + " ");
}