1. 程式人生 > >Math.round、Math.floor、Math.ceil 區別

Math.round、Math.floor、Math.ceil 區別

四舍五入 返回值 math 9.4 最大整數 最小整數 round ceil bsp

1、Math.round() 按照四舍五入的方式返回值

例如:Math.round(9.5)=10

   Math.round(9.4)=9

2、Math.floor()返回最小整數

例如:Math.floor(9.5)=9

   Math.floor(9.2)=9

3、Math.ceil()返回最大整數

例如: Math.ceil(9.1)=10

   Math.ceil(9.5)=10

Math.round、Math.floor、Math.ceil 區別