Java 教程 Java floor() 方法

savoy · 2022-05-24 23:03:27 · 热度: 28

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)); } }

编译以上程序,输出结果为:

100.0
-90.0
101.0
-90.0

查看更多 Java Number & Math 类 相关内容

猜你喜欢:
暂无回复。
需要 登录 后方可回复, 如果你还没有账号请点击这里 注册