for(;;){ count++; num=num/10; if(num==0) break;
}
(;;)表示for循环的初始化,条件,变量迭代都省略了
(int num=0;num<999999999;num++)这样就可以了
for循环第一个;前边应该是什么值,自己查查