#include <stdio.h>
int main()
{
int x = 100;
printf("x=%d\n",++x);
printf("x=%d\n",x++);
printf("x=%d\n",x--);
printf("x=%d\n",--x);
printf("x=%d\n",x+1);
printf("x=%d\n",x);
return 0;
}
因为在--x的上一个运算中得到的x的值为101
每次运算x的值都会变的,
第一条程序 x值为101 第二条 102 第三条 101 第四条 100 所以X输出还是 100