怎么就警告除零错误了,就是用num除不同位数最小的数,不等于零就退出。求大神指点
public class HelloWorld{
public static void main(String[] args){
int num = 999;
int count = 0;
for(int i=9;i>0;i--){
int j=1;
while(j<=i){
count*=10;
j++;
}
if(num/count!=0){
System.out.println("它是个"+i+"位的数!");
break;
}
}
}
}