单选题
下面程序的执行结果是( )。
#include <stdio.h>
void main()
{
Int x=23;
do{
printf(“%d”,x--);
}while(!x);
}
A、
24
B、
23
C、
22
D、
死循环
【正确答案】
B
【答案解析】
提交答案
关闭