java中double型如何取整?

2024-11-20 17:29:27
推荐回答(1个)
回答1:

有float类型的

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