Java floor() 方法
Java 教程
· 2019-02-08 11:57:13
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 教程 文章: https://www.codercto.com/courses/l/12.html
Reality Is Broken
Jane McGonigal / Penguin Press HC, The / 2011-1-20 / USD 26.95
Visionary game designer Jane McGonigal reveals how we can harness the power of games to solve real-world problems and boost global happiness. More than 174 million Americans are gamers, and......一起来看看 《Reality Is Broken》 这本书的介绍吧!