public class HelloWorld{
public static void main(String[] args){
int num = 2147483648 ;
int count = 0;
if(num>=0 && num<=999999999){
for(count=0;count<10;){
count++;
num/=10;
if(num==0){
break;
}
}
System.out.println("它是个"+count+"位的数!"); }
else{
System.out.println("输入有误!");
}
}
}
用long 数值后面加小写l
长整型