第19212题 判断
给定整型变量、输入大于0的整数时,执行以下C++代码段,输出是否一定为-N?
cin >> N;
total = 0;
for (i = -N; i < N; i +=2)
 total += i;
cout << total;
A

正确

B

错误