#include <stdio.h>int main(){ int x = 0; printf("x=%d\nx=%d",x++,++x); return 0;}运行结果是:x = 1 x = 2 查看完整描述