#include <stdio.h> main() { int x; scanf("%d",&x);//x输入为2 if(x++>2) //x此时为3 printf("%d",x); else printf("%d ",x++);//x此时为3 }

暂无讨论,说说你的看法吧
#include <stdio.h> main() { int x; scanf("%d",&x);//x输入为2 if(x++>2) //x此时为3 printf("%d",x); else printf("%d ",x++);//x此时为3 }
之前