while(i<=100) { i++; if(i%2==0) { sum=sum-i; } else { sum=sum+i; } }
把i++;放在sum=sum+i; }之后就可以了
没有输出语句啊printf("sum=%d\n",sum);