java中double型如何取整?

2024年11月20日 17:29
有1个网友回答
网友(1):

有float类型的

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