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

请问这样写不可以吗?

public class HelloWorld{
public static void main(String[] args){
    int num = 999;
    int count = 0;
    for (;num >= 0  && num<=999999999;count++){
        num=num/10;
    }
    System.out.println("它是个"+ count+"位的数!");
    }
}




【后来证明,可以运行】

http://img.mukewang.com/5678f2d20001a81504210381.jpg

提问者:Candy_cans 2015-12-22 14:18

个回答

  • Caballarii
    2015-12-22 14:21:44
    已采纳

    num>0

    如果你有num>=0,那这个循环就结束不了了

  • Zmorn
    2015-12-22 14:28:33

    不行!