0 / 60 seg.

Evaluate this while loop for counting down in Java:

int n = 3;
while (n > 0) {
    System.out.println(n);
    n--;
}