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

这样写可以吗

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

    for(int i=1;i<=num;i*=10){

        count++;

    }

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

}

else{

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

    }

用for写的可以吗

提问者:小东大兄 2015-07-14 09:31

个回答

  • 浅水了
    2015-07-14 17:08:37

    当确定循环次数时用for!

  • 泡芙公主果果
    2015-07-14 10:37:37

    验证正确