填空题下列程序的运行结果是______。 main() int s=0,i=1; while(s<=10) s=s+i*i; i++: printf( %d ,--i);
填空题下列程序的循环次数是______。 x=2; do x=x*x; while(!x);