下面C++代码执行后输出是( )。
1 int tnt = 0; 2 for (int i = -1000; i < 1000; i++) 3 tnt += i; 4 cout << tnt << endl;
-1000
0
999
1000