java随机数生成(固定位数)时间:2022-04-17 07:20:29随机生成 a 到 b (不包含b)的整数: (int)(Math.random()*(b-a))+a; 随机生成 a 到 b (包含b)的整数: (int)(Math.random()*(b-a+1))+a;