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

输出不出来啊

int num = 999;  int count = 0; while (num>=0) { count=1; num=num/10; while(num!=0) { count++; } }  System.out.println("它是个"+count+"位的数!");        我这个为什么输出不出来呢?

提问者:GGGGGx 2016-06-17 15:50

个回答

  • qq_空房子_03379590
    2016-06-17 16:01:05

    int num = 999; 

    int count = 0; 

    while (num>0) { 

    num=num/10; 

    count++; 

    }  

    System.out.println("它是个"+count+"位