范围随机数
max = "最大值"
min = "最小值"
Math.round(Math.random() * (max - min)) + min;
Math.round四舍五入
Math.round(0.5) // 1
Math.round(0.4) // 0
Math.ceil(-0.9) // -1
floor向下取整
Math.floor(0.5) // 0
Math.floor(-0.5) // -1
ceil向上取整
Math.ceil(0.5) // 1
Math.ceil(-0.9) // 0