标签:code int 四舍五入 math round 保留 向上取整 部分 pre
// 丢弃小数部分,保留整数部分
parseInt(7/2) // 3
// 向上取整,有小数就整数部分加1
Math.ceil(7/2) // 4
// 向下取整,丢弃小数部分
Math.floor(7/2) // 3
// 四舍五入
Math.round(7/2) // 3
// 1. 取余
7%2 // 1
标签:code int 四舍五入 math round 保留 向上取整 部分 pre
原文地址:https://www.cnblogs.com/zero-zm/p/9932425.html