问答详情
源自:4-15 编程练习

为什么不正确呢?

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+"位的数!");

}

}


提问者:qq_睫毛下挂满幸福的诺言丶_0 2017-10-13 15:24

个回答

  • _月亮和六便士
    2017-10-13 15:35:05

    帮你在eclipse中执行了一下,是正确的。

    过你也是在eclipse中执行出错的话,检查一下你创建的类(class)的名称是否为:HelloWorld