Math類

_45577911發表於2020-10-26

Math.aqrt(n)//計算平方根
Math.cbrt(n)//計算立方根
Math.pow(a,b)//計算a的b次方
Math.max(a,b)//得出最大值
Math.min(a,b)//得出最小值
Math.abs(n)//計算絕對值
Math.ceil(n)//向上取整
Math.floor(n)//向下取整
Math.rint(n)//四捨五入得到一個double值,注意 .5的時候取偶整數
Math.round(n)//不是四捨五入,是加 0.5 向下取整數。
如Math.round(-1)=-1
Math.round(1)=1
Math.round(1.4)=1
Math.round(1.5)=2
Math.round(1.6)=2
Math.round(-1.4)=-1
Math.round(-1.5)=-1