常用算法
//生成指定范围的随机数 public int getRandomeNum(int min,int max){ return random.nextInt(max) % (max - min + 1) + min; }