do-while循环计算得到的是-100;for循环计算出结果是-150;
for循环
for(i=1;i<=99;i+=2)
{
flag=i+1;
sum+=(i-flag);
}
printf("sum=%d\n",sum);