
- Java.lang Package classes
- 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 extras
- Java.lang - Interfaces
- Java.lang - Errors
- Java.lang - Exceptions
- Java.lang Package Useful Resources
- Java.lang - Useful Resources
- Java.lang - Discussion
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Java.lang.StrictMath.IEEEremainder() Method Example
Description
The java.lang.StrictMath.IEEEremainder() method computes the remainder operation on two arguments.
The remainder value is mathematically equal to f1 - f2 × n, where n is the mathematical integer closest to the exact mathematical value of the quotient f1/f2, and if two mathematical integers are equally close to f1/f2, then n is the integer that is even.
If the remainder is zero, its sign is the same as the sign of the first argument.It include some cases −
- If either argument is NaN, or the first argument is infinite, or the second argument is positive zero or negative zero, then the result is NaN.
- If the first argument is finite and the second argument is infinite, then the result is the same as the first argument.
Declaration
Following is the declaration for java.lang.StrictMath.IEEEremainder() method
public static double IEEEremainder(double f1, double f2)
Parameters
f1 − This is the dividend.
f2 − This is the divisor.
Return Value
This method returns the remainder when f1 is divided by f2.
Exception
NA
Example
The following example shows the usage of java.lang.StrictMath.IEEEremainder() method.
package com.tutorialspoint; import java.lang.*; public class StrictMathDemo { public static void main(String[] args) { double d1 = 102.20d , d2 = 32.29d; // returns the remainder double retval = StrictMath.IEEEremainder(d1, d2); System.out.println(" remainder = " + retval); /* if the first argument is finite and the second argument is infinite, then the result is the same as the first argument */ d1 = 30.12d; d2 = (1.0)/(0.0); retval = StrictMath.IEEEremainder(d1, d2); System.out.println(" remainder = " + retval); } }
Let us compile and run the above program, this will produce the following result −
remainder = 5.330000000000005 remainder = 30.12