赞
踩
一、浮点数
1、向上取整(不小于自变量):ceil()
2、向下取整(不大于自变量):floor()
3、四舍五入取到最临近的整数:round()
二、整型
1、向上取整(不小于自变量):(n-1)/m + 1 ,也可以写成 (n+m-1)/m
2、向下取整(不大于自变量):n/m