在“不多于5位数的正整数”中,最小的数为1。最大的数为:99999 ∴这些正整数为:1至99999中,任意单数,或任意复数组合而成的数。
public class OutPutString {public static void main(String[] args) {judgelength(3774);}public static void judgelength(int num){String convertstr = String.valueOf(num);int len = convertstr.length();if ("".equals(num)||len>5) {System.err.println("不符合规则的数");}System.ou...