public class HelloWorld{
public static void main(String[] args){
int num = 999;
int count = 0;
if(num>=0&&num<=999999999){
while(num!=0){
count++;
num=num/10;
}
System.out.println("它是个"+count+"位的数!");
}else{
System.out.println("输入有误!");
}
}
}
我试了一下你的代码,程序没错,就是输出 System.out.println("它是个"+count+"位的数!");这句中的!号你用的是英文的,改成中文的就对了。
你把第七和第八行的代码对调一下。
输出那里的感叹号中文或者英文没有影响的。
应该是系统的判断有问题,我的代码在Java上也可以运行,可是提交系统说有错误
试了一下,没问题
死循环,没有输入