Math.floor()
Returns the highest double value lower or equal to the input number and equal to an integer.
Syntax
Math.floor(double input_number)
Output is a double value .
System.out.println(Math.floor(-20)); // -20.0
System.out.println(Math.floor(-20.56));// -21.0
System.out.println(Math.floor(-20.12));// -21.0
System.out.println(Math.floor(20)); // 20.0
System.out.println(Math.floor(20.56)); // 20.0
System.out.println(Math.floor(20.12)); // 20.0
« All Math functions
« Java
This article is written by plus2net.com team.
plus2net.com