View difference between Paste ID: XTh4dQfU and DPcwKGXS
SHOW: | | - or go back to the newest paste.
1
static void Main()
2
{
3
for (int i = 2; i < 1002; i++)
4
{
5
if (i % 2 == 0)
6-
6+
7
Console.Write(i);
8-
8+
9
}
10-
Console.Write(i * (-1);
10+
11
{
12
Console.Write(i * (-1));
13-
13+
14
}
15
}
16
}