在本教程中,我们将借助示例了解 Java Math.floor() 方法。
floor()
方法向下舍入指定的 double 值并返回它。四舍五入的值将等于一个数学整数。也就是说,价值3.8将四舍五入为3.0等于整数3.
示例
class Main {
public static void main(String[] args) {
double a = 3.8;
System.out.println(Math.floor(a));
}
}
// Output: 3.0
数学.floor() 语法
用法:
Math.floor(double value)
在这里,floor()
是一个静态方法。因此,我们使用类名 Math
访问该方法。
Math.floor() 参数
floor()
方法采用单个参数。
- value- 向上四舍五入的数字
Math.floor() 返回值
- 返回等于数学整数的舍入值
注意:返回值是小于或等于指定参数的最大值。
示例:Java 数学。floor()
class Main {
public static void main(String[] args) {
// Math.floor() method
// value greater than 5 after decimal
double a = 1.878;
System.out.println(Math.floor(a)); // 1.0
// value equals to 5 after decimal
double b = 1.5;
System.out.println(Math.floor(b)); // 1.0
// value less than 5 after decimal
double c = 1.34;
System.out.println(Math.floor(c)); // 1.0
}
}
相关用法
- Java Math floorMod()用法及代码示例
- Java Math floorDiv()用法及代码示例
- Java Math fma()用法及代码示例
- Java Math sqrt()用法及代码示例
- Java Math addExact(long x, long y)用法及代码示例
- Java Math sinh()用法及代码示例
- Java Math nextAfter()用法及代码示例
- Java Math cos()用法及代码示例
- Java Math multiplyFull()用法及代码示例
- Java Math incrementExact(int x)用法及代码示例
- Java Math tan()用法及代码示例
- Java Math nextUp()用法及代码示例
- Java Math addExact()用法及代码示例
- Java Math atan2()用法及代码示例
- Java Math max()用法及代码示例
- Java Math incrementExact()用法及代码示例
- Java Math acos()用法及代码示例
- Java Math exp()用法及代码示例
- Java Math hypot()用法及代码示例
- Java Math copySign()用法及代码示例
注:本文由纯净天空筛选整理自 Java Math floor()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。