#include <stdio.h>
int main()
{
int x = 0;
printf("x=%d\nx=%d",x++,++x);
return 0;
}
运行结果是:x = 1
x = 2
慕仔0478872
相关分类