标签:ret get math 整数 cti bsp UNC span 随机
function getRand(min, max) { let rand = min + Math.random() * (max+1-min); return Math.floor(rand); }
生成随机整数
原文地址:https://www.cnblogs.com/LangZ-/p/13418208.html