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

这个for循环为什么错了

public class HelloWorld{

public static void main(String[] args){

int num = 999;

int count = 0;

for(;num>=1;num/10)

    count++;

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

    }

}


提问者:慕先生3099750 2019-06-24 15:06

个回答

  • 慕粉3465594
    2019-07-04 14:34:25

    如果用for循环如下:

    public class HelloWorld{

        public static void main(String[] args){

            int num = 999;

            int count = 0;

            for(;;){

                count++;

                num = num / 10;

                if(num == 0)

                    break;

            }

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

        }

    }


  • 慕先生3099750
    2019-06-24 15:08:57

    只需要做个小小的改动,在/后面加个=号即可