Java floor() 方法
描述:
该方法给出了小于或等于该参数的最大整数。
语法
这种方法有以下变种:
double floor(double d) double floor(float f)
参数
下面是参数的详细信息:
-
一个 double 或 float 原始数据类型。
返回值
-
此方法返回小于或等于该参数的最大整数。返回为double类型。
例子:
public class Test{ public static void main(String args[]){ double d = -100.675; float f = -90; System.out.println(Math.floor(d)); System.out.println(Math.floor(f)); System.out.println(Math.ceil(d)); System.out.println(Math.ceil(f)); } }
这将产生以下结果:
-101.0 -90.0 -100.0 -90.0