java.lang.Math.IEEEremainder(double f1, double f2)方法實例
java.lang.Math.IEEEremainder(double f1, double f2) 返回計算在規定IEEE 754標準的兩個參數的餘數運算。其餘的值在數學上等於f1- f2 x n,其中n是整數數學最接近商f1 / f2的精確的數學值,並且如果兩個整數都同樣接近f1 / f2,則n是整數,該整數是偶數。如果餘數是零,它的符號是相同的,第一個參數的符號。特殊情況:
-
如果任一參數為NaN,或者第一個參數為無窮大,或者第二個參數是正零或負零,那麼結果為NaN。
-
如果第一個參數是有限的,第二個參數為無窮大,那麼返回結果為第一個參數。
聲明
以下是java.lang.Math.IEEEremainder()方法的聲明
public static double IEEEremainder(double f1, double f2)
參數
-
f1 -- 被除數。
-
f2 -- 除數。
返回值
此方法返回f1除以f2的餘數。
異常
-
NA
例子
下麵的例子顯示lang.Math.IEEEremainder()方法的使用。
package com.yiibai; import java.lang.*; public class MathDemo { public static void main(String[] args) { // get two double numbers double x = 60984.1; double y = -497.99; // get the remainder when x/y System.out.println("Math.IEEEremainder(" + x + "," + y + ")=" + Math.IEEEremainder(x, y)); // get the remainder when y/x System.out.println("Math.IEEEremainder(" + y + "," + x + ")=" + Math.IEEEremainder(y, x)); } }
讓我們來編譯和運行上麵的程序,這將產生以下結果:
Math.IEEEremainder(60984.1, -497.99)=229.31999999999744 Math.IEEEremainder(-497.99, 60984.1)=-497.99