C Sharp > for
21.05.2018 10:48:08
Наиболее часто встречающиеся слова в статье:
[Console] [WriteLine] [Outputs]
Статья:
for (int x = 0; x < 10; x+=3) { Console.WriteLine(x); } /* Outputs 0 3 6 9 */ for (int x = 10; x > 0; x-=2) { Console.WriteLine(x); } /* Outputs 10 8 6 4 2*/