
- Java.lang - Home
- Java.lang - Boolean
- Java.lang - Byte
- Java.lang - Character
- Java.lang - Character.Subset
- Java.lang - Character.UnicodeBlock
- Java.lang - Class
- Java.lang - ClassLoader
- Java.lang - Compiler
- Java.lang - Double
- Java.lang - Enum
- Java.lang - Float
- Java.lang - InheritableThreadLocal
- Java.lang - Integer
- Java.lang - Long
- Java.lang - Math
- Java.lang - Number
- Java.lang - Object
- Java.lang - Package
- Java.lang - Process
- Java.lang - ProcessBuilder
- Java.lang - Runtime
- Java.lang - RuntimePermission
- Java.lang - SecurityManager
- Java.lang - Short
- Java.lang - StackTraceElement
- Java.lang - StrictMath
- Java.lang - String
- Java.lang - StringBuffer
- Java.lang - StringBuilder
- Java.lang - System
- Java.lang - Thread
- Java.lang - ThreadGroup
- Java.lang - ThreadLocal
- Java.lang - Throwable
- Java.lang - Void
- Java.lang Package Useful Resources
- Java.lang - Useful Resources
- Java.lang - Discussion
Java - Math rint(double x) method
Description
The Java Math rint(double a) returns the double value that is closest in value to the argument and is equal to a mathematical integer. If two double values that are mathematical integers are equally close, the result is the integer value that is even. Special cases −
If the argument value is already equal to a mathematical integer, then the result is the same as the argument.
If the argument is NaN or an infinity or positive zero or negative zero, then the result is the same as the argument.
Declaration
Following is the declaration for java.lang.Math.rint() method
public static double rint(double a)
Parameters
a − a double value.
Return Value
This method returns the closest floating-point value to a that is equal to a mathematical integer.
Exception
NA
Example: Getting Closest Int to a Positive double Value
The following example shows the usage of Math rint() method to get a double value for a positive double value.
package com.tutorialspoint; public class MathDemo { public static void main(String[] args) { // get a double number double x = 1654.9874; // find the closest integers for this double number System.out.println("Math.rint(" + x + ")=" + Math.rint(x)); } }
Output
Let us compile and run the above program, this will produce the following result −
Math.rint(1654.9874)=1655.0
Example: Getting Closest Int to a Negative double Value
The following example shows the usage of Math rint() method to get a double value for a negative double value.
package com.tutorialspoint; public class MathDemo { public static void main(String[] args) { // get a double number double x = -9765.134; // find the closest integers for this double number System.out.println("Math.rint(" + x + ")=" + Math.rint(x)); } }
Output
Let us compile and run the above program, this will produce the following result −
Math.rint(-9765.134)=-9765.0
Example: Getting Closest Int to a Zero double Value
The following example shows the usage of Math rint() method to get a double value for a zero double values.
package com.tutorialspoint; public class MathDemo { public static void main(String[] args) { // get a double number double x = -0.0; double y = 0.0; // find the closest integers for these double number System.out.println("Math.rint(" + x + ")=" + Math.rint(x)); System.out.println("Math.rint(" + y + ")=" + Math.rint(y)); } }
Output
Let us compile and run the above program, this will produce the following result −
Math.rint(-0.0)=-0.0 Math.rint(0.0)=0.0