运行成功,输出错误是哪里出错了?
public class HelloWorld{
public static void main(String[] args){
int num = 999;
int count = 0;
do{
count++;
num/=10;
}while(num>0);
System.out.println("它是个"+count+"位的数!");
}
}
public class HelloWorld{
public static void main(String[] args){
int num = 999;
int count = 0;
do{
count++;
num/=10;
}while(num>0);
System.out.println("它是个"+count+"位的数!");
}
}
2019-09-12
举报