Math.random():获取0~1随机数 Math.floor() method rounds a number DOWNWARDS to the nearest integer, and returns the result. (小于等于 x,且与 x 最接近的整数.)其实返回值就是该数的整数位:Math.floor(0.666) --> 0Math.floor(39.2783) --> 39 所以我们可以使用Math.floor(Math.random())去获取你想要的一
在erlang的API中,erlang:trunc/1 是就近取整,erlang:round/1是四舍五入的, 整理下:对于正数的向上和向下取整, %% 向上取整 ceil(N) -> T = trunc(N), case N == T of true -> T; false -> 1 + T end. %% 向下取整 floor(X) -> T = trunc(X), case (X < T) of true -> T - 1; _ -> T end. 而对于负
function f1(type,num1) { switch(type) { case 'floor': return Math.floor(num1);//取整或下舍入 break; case 'round': return Math.round(num1);//四舍五入 break; case 'ceil': return Math.ceil(num1);//上舍入 break; case 'abs': return Math.abs(num1);//取绝对值 break; } } fun