对他们的运算搞不明白
int x=1;
printf("%d\n",x++)
printf("%d\n",++x)
运算出来的结果 为什么是 分别是 1 和 3?
i++ 就是先取值后+1
++i就是先+1后取值