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

What will happen if the following code is executed?

int n = 5;
while (n > 0) {
    System.out.println(n);
    // n is not updated!
}