慕的地1533170
2016-03-28 20:32
public class HelloWorld{
public static void main(String[] args){
int num = 999;
int count = 0;
if(num>0&&num<=999999999){
while(num!=0){
num/=10;
count++;
}
System.out.println("它是个"+count+"位的数!");
}else{
System.out.println("输入错误");
}
}
}
答案正确了,但却提交不了,我的也是这种情况
我用你的代码运行,结果是正确的,5位数也是正确的。
Java入门第一季(IDEA工具)升级版
1165172 学习 · 17581 问题
相似问题