0 / 60 seg.

Evaluate the functionality of a "do-while" loop in this Java code:

int n = 0;
do {
    System.out.println(n);
    n++;
} while (n < 5);