求助下面程序,我运行结果是4,3,4,但我自己计算应该是4,3,3呀,想不明白
#include <stdio.h>int main()
{ int n=0;
int a,b;
a=n++;
b=++n;
printf("%d,%d,%d\n",n,n++,++n);
}
2017-12-20 16:01
2017-12-20 16:08
2017-12-20 16:17
2017-12-20 16:20
2017-12-20 16:51
2017-12-20 17:50
2017-12-20 21:16
2017-12-21 10:21