Math .ceil()/Math.floor()/Math.round()

1. Math.ceil(x) 向上取整
2. Math.floor(x) 向下取整
3. Math.round(x) 四舍五入取整。等价于 Math.floor(x+0.5);

Math.ceil(11.1); \\ 12
Math.ceil(11.5); \\ 12
Math.ceil(11.6); \\12
Math.ceil(-11.1); \\ -11
Math.ceil(-11.5); \\ -11
Math.ceil(-11.6); \\ -11

Math.floor(11.1); \\ 11
Math.floor(11.5); \\ 11
Math.floor(11.6) \\ 11
Math.floor(-11.1) \\ -12
Math.floor(-11.5); \\ -12
Math.floor(-11.6); \\ -12

Math.round(11.1); \\ 11
Math.round(11.5); \\ 12
Math.round(11.6); \\ 12
Math.round(-11.1); \\ -11
Math.round(-11.5); \\ -11
Math.round(-11.6); \\ -12

你可能感兴趣的:(Math .ceil()/Math.floor()/Math.round())