How to get the closest floating point value that is equal to integer in Java

1 Answer

0 votes
public class MyClass {
    public static void main(String args[]) {
        double x = 123.892;
        double y = -984.28;
   
        System.out.println(Math.rint(123.892));
        System.out.println(Math.rint(123.459));

        System.out.println(Math.rint(-984.28));
        System.out.println(Math.rint(-984.57));
    }
}




/*
run:

124.0
123.0
-984.0
-985.0

*/

 



answered Jun 11, 2019 by avibootz
...