for(int i=0;i<9;i++){ double a=num/10; count++; if(a<=1){ break; } } System.out.println("它是个"+count+"位的数!");
因为你循环体执行了九次,count的值为九 所以输出为九