为了账号安全,请及时绑定邮箱和手机立即绑定

这个错误是什么意思,怎么看错误

public class HelloWorld{

public static void main(String[] args){

int num = 999;

int count = 0;

if (num>=0 && num<=999999999) {

    for (count=0;num/=10;count++){

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

    }

}else{

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

}

https://img1.sycdn.imooc.com//5c88e5210001aed805600186.jpg

??????????????

正在回答

4 回答

它是个

0 回复 有任何疑惑可以回复我~

public class HelloWorld{

    public static void main(String[] args){

        int num = 999;

        int count = 0;

        String numm = String.valueOf(num);

        count = numm.length();

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

    }

}


0 回复 有任何疑惑可以回复我~

public class HelloWorld{


    public static void main(String[] args){

        int num = 999;

        int count = 0;

        if (num >= 0 && num <= 999999999){

            while(num != 0){

                count++;

                num /= 10;

            }

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

        }

        else

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

    }

}

0 回复 有任何疑惑可以回复我~

for(;布尔条件;)

你的代码这个地方的结果是整型,不是布尔型;

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

这个错误是什么意思,怎么看错误

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信