找考题网-背景图
填空题

运行以下程序的结果是321。
main()
int x;
x=3;
do
printf("%d",x--);
while(!x);
错误:______
改正:______

【参考答案】

错误:while(!x)
改正:将其修改为while(x!=0)
热门试题