Open In App

StrictMath rint() Method in Java

Last Updated : 13 Dec, 2021
Improve
Improve
Like Article
Like
Save
Share
Report

The rint() is the inbuilt method of StrictMath class in Java which is used to get the double value which is closest in value to the argument and is equal to an integer. It returns the integer value which is even when the two double values that are integers are equally close to the value of the given argument. It returns the same as argument when the argument value is already equal to the integer and it returns the same as the argument when the argument is NaN or an infinity or positive zero or negative zero.
Syntax: 

public static double rint(double num)

Parameters: The method accepts single parameter num of double type which is to be converted using this method.
Return Value: The method returns the closest floating point value that is equal to a integer.
Examples : 

Input: num =72.2
Output: 72.0

Below programs illustrate the rint() method:
Program 1: 

java




// Java program to illustrate the
// java.lang.StrictMath.rint()
 
import java.lang.*;
 
public class Geeks {
    public static void main(String[] args)
    {
 
        // Get a double number
        double num1 = 87.1;
 
        // Convert the double number using rint() method
        double rint_Value = StrictMath.rint(num1);
 
        // Print the result
        System.out.println(" The Integer value closest to "
                         + num1 + " = " + rint_Value);
 
        // Get a double number
        double num2 = 65.9;
 
        // Convert the double number using rint() method
        rint_Value = StrictMath.rint(num1);
 
        // Print the result
        System.out.println(" The Integer value closest to "
                         + num1 + " = " + rint_Value);
    }
}


Output: 

The Integer value closest to 87.1 = 87.0 
The Integer value closest to 87.1 = 87.0

 

Program 2: 

java




// Java program to illustrate the
// java.lang.StrictMath.rint()
 
import java.lang.*;
 
public class Geeks {
 
    public static void main(String[] args)
    {
 
        // Get a double number
        double num1 = -65.5;
 
        // Convert the double number using rint() method
        double rint_Value = StrictMath.rint(num1);
 
        // Print the result
        System.out.println(" The Integer value closest to "
                         + num1 + " = " + rint_Value);
 
        // Get a double number
        double num2 = -42.7;
 
        // Convert the double number using rint() method
        rint_Value = StrictMath.rint(num1);
 
        // Print the result
        System.out.println(" The Integer value closest to "
                         + num1 + " = " + rint_Value);
    }
}


Output: 

The Integer value closest to -65.5 = -66.0 
The Integer value closest to -65.5 = -66.0

 



Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads