0 / 60 seg.

¿Qué hace este código?

int i = 0;
do {
    Console.Write(i + " ");
    i++;
} while (i < 5);