0 / 60 seg.

¿Qué hace este código?

for (int i = 0; i < 10; i++) {
    if (i == 5) {
        break;
    }
    Console.Write(i + " ");
}