public class HelloWorld{
public static void main(String[] args){
int num = 999;
int count = 0;
int j;
j=num/10;
while(j!=0){
count++;
j=j/10;
}
count++;
System.out.println("它是个"+count+"位的数!");
}
}
帮你在eclipse中执行了一下,是正确的。
过你也是在eclipse中执行出错的话,检查一下你创建的类(class)的名称是否为:HelloWorld