#include<stdio.h>
int main() {
int x = 0;
printf("%d\n", ++x + 1);
printf("%d\n",x);
return 0;
}
++x,这个东西是先将X的值加1再取值
所以第2个里面x的值是1