为什么不正确呢?
public class HelloWorld{
public static void main(String[] args){
int num = 999;
int count = 0;
int j;
j=num/10;
while(j!=0){
count++;
j=j/10;
}
count++;
System.out.println("它是个"+count+"位的数!");
}
}
public class HelloWorld{
public static void main(String[] args){
int num = 999;
int count = 0;
int j;
j=num/10;
while(j!=0){
count++;
j=j/10;
}
count++;
System.out.println("它是个"+count+"位的数!");
}
}
2017-10-13
举报