Easy Tutorial
❮ Data Element Java Object Notify ❯

Java floor() Method

Java Number Class


The floor() method rounds a number down and returns the largest integer that is less than or equal to the given parameter.

Syntax

The method has the following syntax formats:

double floor(double d)

double floor(float f)

Parameters

Return Value

Returns a double type data, which is less than or equal to the given parameter.

Example

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

Compiling the above program will output the following:

100.0
-90.0
101.0
-90.0

Java Number Class

❮ Data Element Java Object Notify ❯