找考题网-背景图
填空题

执行下列程序的输出结果是()。 
#include 
main( ) 
{   int x=10;
     do{  
x--; 
    }while(--x); 
printf(“%d\n”,x--); 
} 

【参考答案】

0