答题骚操作(没啥大用)
public class HelloWorld{
public static void main(String[] args){
int num = 999;
int count = 0;
String StrNum = "" + num;
count = StrNum.length();
System.out.println("它是个"+ count +"位的数!");
}
}