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

最后的输出语句,我为什么提交还是正确的答案?

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






}
}

提问者:他们都喊我凯哥 2015-11-12 18:48

个回答

  • 山水之间123
    2015-12-01 03:38:30

    这里做对做错都说是对的,要自己在Eclipse上试才行。