标签:random 包括 参与 作用 round floor bsp rand 相关
Math.PI;获取π的值
Math.max(1,2,3,4);
Math(min(1,2,3,4);
Math.round(2.5); //四舍五入
Math.ceil(1.1); //向上舍入
Math.floor(2.9); //向下舍入
Math.random(); //获取0~1之间的随机数,不包括 0和1,可以直接将其加减乘除参与运算也可以作为变量直接作用于Math.floor和Math.ceil;
标签:random 包括 参与 作用 round floor bsp rand 相关
原文地址:http://www.cnblogs.com/283383765pw/p/6738478.html