为什么我的for语句会错?不懂,大神教教我
判断一个数(小于10位)的位数。 输入999,则输出 “它是个3位的数!
public class HelloWorld{
public static void main(String[] args){
int i = 999;
int x = 0;
for(x;x<10;x++){
if(i/10<1){
break;
}else{
continue;
}
System.out.println("它是个"+x+"位的数");
}
}
}
哪里错了?大神教教我