为什么 i*=flag; sum+=i; 这步非得写成sum+=i*flag才有答案那?
for(i=1;i<=100;i++)
{
sum += i*flag;
flag *= -1;
}
当i是负数时,i++结果就会不一样了