生成随机数(2位)
Random ran = new Random();
int i = ran.nextInt(90)+10; // 随机的结果为 [0,90)+10 = [10,99]
System.out.println(i);