int num=(int)(Math.random()*(MAX-MIN+1)+MIN); //例如生成1000-9999之间的随机数 int num=(int)(Math.random()*(9999-1000+1)+1000);