#include <stdio.h>
int main()
{
int x = 0;
printf("x=%d\n",x++);
printf("x=%d\n",++x);
printf("x=%d\n",x);
return 0;
} x=0
x=2
好的呢
是我弄错了,我已经搞明白了