发布时间:2019-07-29 18:08:45
执行以下程序段会输出
int x=0;
do printf("%d", ++x); while(x++<2);
A)0 B)1 C)02 D)13
结果明显为
D)13