java math.round()用法
时间: 2023-04-28 13:03:41 浏览: 137
Java Math.round(),Math.ceil(),Math.floor()的区别详解
5星 · 资源好评率100%
Java中的Math类中有一个round()方法,用于将浮点数四舍五入为最接近的整数。使用方法如下:
Math.round(double x) // 四舍五入double类型的数
Math.round(float x) // 四舍五入float类型的数
例如:
Math.round(2.5) 将返回 3
Math.round(2.4) 将返回 2
阅读全文