对于任意一个整型变量a :
if(999System.out.print(a+"是四位数");
}
int a = Integer.parseInt(你输入的字符串);
if (Math.abs(a) > 999 and Math.abs(a) < 10000) {
// 是4位整数
}
else {
// 不是4位整数
}
public booleam isInteger(String s){ if(s.length == 4 && ! (s.contain(".")) ) return true;}
当然前提是你输的字符串是非负数而且不以0开头
字符的length属性