我的 for 循环错哪了,我为什么写了个这么样子的代码?
public class HelloWorld{
public static void main(String[] args){
int num = 999;
for (int count = 1;count < 10;count++){
if (num >= 0 && num <999999999){
System.out.println("它是个"+count+"位的数!");
}else{
System.out.println("输入一个小于999999999的数,亲!");
}
}
}
}