int类型除法向上取整 在java中怎么对一个数字取整?

在java中怎么对一个数字取整?有float类型的 向上取整:Math.ceil() //只要有小数都 1 向下取整:Math.floor() //不取小数 四舍五入:Math.round() //四

在java中怎么对一个数字取整?

有float类型的 向上取整:Math.ceil() //只要有小数都 1 向下取整:Math.floor() //不取小数 四舍五入:Math.round() //四舍五入