當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Math.IEEEremainder()用法及代碼示例


java.lang.Math.IEEEremainder() 用於計算 IEEE 754 標準規定的兩個參數的餘數運算。餘數在數學上等於 a-b Ăn,其中 n 是最接近商 a/b 的精確數學值的數學整數。

如果兩個整數同樣接近 a/b,則 n 是偶數的整數。

用法

public static double IEEEremainder(double a, double b)

參數

a = the dividend
b = the divisor

返回

It returns the remainder when a is divided by b.
  • 如果兩個參數的餘數為零,則其符號與第一個參數的符號相同。
  • 如果第一個參數是無限的,則此方法將返回 NaN。
  • 如果第二個參數是正零或負零,則此方法將返回 NaN。
  • 如果任一參數為 NaN,則此方法將返回 NaN。
  • 如果第一個參數是有限的,第二個參數是無窮大,這個方法將返回第一個參數值。

例子1

public class IEEEremainderExample1
{
    public static void main(String[] args) 
    {
        double a = 387.1;
        double b = 4.2;
        System.out.println(Math.IEEEremainder(a, b));
    }
}

輸出:

0.7000000000000064

例子2

public class IEEEremainderExample2
{
    public static void main(String[] args) 
    {
        double a = -45.0;
        double b = 5.0;
        // Sign of a is negative, Output is negative zero
        System.out.println(Math.IEEEremainder(a, b));
    }
}

輸出:

-0.0

例子3

public class IEEEremainderExample3
{
    public static void main(String[] args) 
    {
        double a = 1.0/0;
        double b = 5;
        // First argument is infinity, Output NaN
        System.out.println(Math.IEEEremainder(a, b));
    }
}

輸出:

NaN

示例 4

public class IEEEremainderExample4
{
    public static void main(String[] args) 
    {
        double a = 63;
        double b = 0;
        // Second argument is zero, Output NaN
        System.out.println(Math.IEEEremainder(a, b));
    }
}

輸出:

NaN

例 5

public class IEEEremainderExample5
{
    public static void main(String[] args) 
    {
        double a = 0.0/0;
        double b = 36;
        // First argument is NaN, Output NaN
        System.out.println(Math.IEEEremainder(a, b));
    }
}

輸出:

NaN

例 6

public class IEEEremainderExample6
{
    public static void main(String[] args) 
    {
        double a = 27.13;
        double b = 1.0/0;
        // Second argument is infinity, Output first argument
        System.out.println(Math.IEEEremainder(a, b));
    }
}

輸出:

27.13






相關用法


注:本文由純淨天空篩選整理自 Java Math.IEEEremainder() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。