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

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

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


提问者:nslnse 2015-09-06 23:30

个回答

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

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