How to use floor() to get the largest integer that is less than or equal to the argument in Java

1 Answer

0 votes
package javaapplication1;

public class JavaApplication1 {
 
    public static void main(String[] args) {
        
        double d1 = -3.678;
        double d2 = -3.578;
        double d3 = -3.478;
        double d4 = -3.998;
        double d5 = 3.998;
        double d6 = 3.567;
        double d7 = 3.234;
        float f1 = -120;    
        float f2 = 31;    

        System.out.println(Math.floor(d1));
        System.out.println(Math.floor(d2));
        System.out.println(Math.floor(d3));
        System.out.println(Math.floor(d4));
        System.out.println(Math.floor(d5));
        System.out.println(Math.floor(d6));
        System.out.println(Math.floor(d7));
        System.out.println(Math.floor(f1));  
        System.out.println(Math.floor(f2));  
    }
}
 
/*
run:

-4.0
-4.0
-4.0
-4.0
3.0
3.0
3.0
-120.0
31.0
 
*/

 



answered Sep 7, 2016 by avibootz
...