qq_睫毛下挂满幸福的诺言丶_0
2017-10-13 15:24
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
Java入门第一季(IDEA工具)升级版
1165172 学习 · 17581 问题
相似问题