Java Math floor()方法向下舍入指定的double值并将其返回。
取整值应等于数学整数。也就是说,值3.8应该四舍五入为3.0,等于整数3。
floor()方法的语法为:
Math.floor(double value)
注意:floor()是静态方法。因此,我们可以使用类名Math来访问该方法。
value - 要向上舍入的数字
返回等于数学整数的舍入值
注意:返回的值应该是大于或等于指定参数的最大值。
class Main { public static void main(String[] args) { //Math.Floor()方法。 //小数点后大于5的值 double a = 1.878; System.out.println(Math.floor(a)); // 1.0 //小数点后的值等于5 double b = 1.5; System.out.println(Math.floor(b)); // 1.0 //小数点后小于5的值 double c = 1.34; System.out.println(Math.floor(c)); // 1.0 } }