判断一个数的位数,这个代码哪里出了问题呢

来源:4-15 编程练习

nslnse

2015-09-06 23:30

public class HelloWorld{
public static void main(String[] args){
int num = 999;
int count = 0;

for(; count<=10;count++)
{
    for(int i= 0;i<=Math.pow(10,(count+1));i++)
    {
        if((num-i)>=0)
        {
            continue;
        }
        else{
            break;
        }
    }
   break;
}   


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

}


提示是:error: reached end of file while parsing
}
^
1 error


写回答 关注

1回答

  • Perona
    2015-09-06 23:41:45

    最后缺了}。括号是成对出现滴~~

Java入门第一季(IDEA工具)升级版

0基础萌新入门第一课,从Java环境搭建、工具使用、基础语法开始

1165626 学习 · 17587 问题

查看课程

相似问题