0 / 60 seg.

¿Qué hace el siguiente bucle for?

for (int i = 1; i <= 10; i++) {
    if (i % 2 == 0) {
        Console.WriteLine(i);
    }
}