AhnamLaw
2017-07-06 16:08
public class HelloWorld{
public static void main(String[] args){
int num = 999;
int count = 0;
do{count++;
num=num/10;
}while(num!=0);
System.out.println("它是个"+count+"位的数!");
}
}
没错吧
Java入门第一季(IDEA工具)
1168191 学习 · 18754 问题
相似问题