急急急,语法没错,逻辑错在哪了呢,输出答案是10位
public class HelloWorld{
public static void main(String[] args){
int num = 999;
int count = 0;
for(;count<=9;count++){
if(num/(10^count)<1){
break;
}
}System.out.println("它是个"+count+"位的数!");
}
}