Math.floor():向下取整
Math.round():四舍五入
需要注意的比如:Math.ceil(-1.6) = -1.0;
Math.round(-1.5) = -1;
Math.round(-1.6) = -2;