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

What will be the output of the following code?

for (int i = 1; i <= 5; i++) {
    if (i == 3) break;
    System.out.print(i + " ");
}