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

What will the following code output?

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