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

请问这哪里错了

public class HelloWorld{

public static void main(String[] args){

int num = 999;

int count = 0;

if(num>=0 && num<=99999999);{

while(num!=0){

count++;

num/=10;

}

System.out.println("它是个" +count+ "位的数!");

}

else{

System.out.println("输入有误!");

}


提问者:孙涛虎 2019-09-21 21:55

个回答

  • qq_慕UI9173242
    2019-10-29 08:53:55

    第五行少个9(只到八位数)

    第五行多了个分号

    最后少2大括号


  • 慕设计3561947
    2019-09-21 22:58:36

    第五行多了个分号

    最后少大括号