for(;count<10;count++){
if(num!=0){
num /= 10;
}
else{
System.out.println(count+"位数");
break;
count沒有聲明
自己解决了,