public class HelloWorld{
public static void main(String[] args){
int num = 999;
int count = 0;
if(num>=0 && num<=99999999);{
while(num!=0){
count++;
num/=10;
}
System.out.println("它是个" +count+ "位的数!");
}
else{
System.out.println("输入有误!");
}
第五行少个9(只到八位数)
第五行多了个分号
最后少2大括号
第五行多了个分号
最后少大括号