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

为什么我的输出是空白的啊。。

public class HelloWorld{

public static void main(String[] args){

int num = 999;

int count = 0;

if(num/10!=0){

    num=num/10;

    count++;

}

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


}

}


提问者:不知道叫啥好O 2015-10-21 21:17

个回答

  • 不知道叫啥好O
    2015-10-21 21:24:56

    懂了。。。