Java - Math IEEEremainder(double x, double y) 方法



描述

Java 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 时的余数。

异常

根据 IEEE 754 标准获取两个数字的余数示例

以下示例演示了 Math IEEEremainder() 方法的使用。

package com.tutorialspoint;

public class MathDemo {

   public static void main(String[] args) {

      // get two double numbers
      double x = 60984.1;
      double y = -497.99;
   
      // call IEEEremainder and print the result
      System.out.println("Math.IEEEremainder(" + x + "," + y + ")=" + Math.IEEEremainder(x, y));
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果 -

Math.IEEEremainder(60984.1,-497.99)=229.31999999999744

根据 IEEE 754 标准获取两个零数字的余数示例

以下示例演示了 Math IEEEremainder() 方法对零值的使用。

package com.tutorialspoint;

public class MathDemo {

   public static void main(String[] args) {

      // get two double numbers
      double x = 0.0;
      double y = -0.0;
   
      // call IEEEremainder and print the result
      System.out.println("Math.IEEEremainder(" + x + "," + y + ")=" + Math.IEEEremainder(x, y));
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果 -

Math.IEEEremainder(0.0,-0.0)=NaN

根据 IEEE 754 标准获取两个一数字的余数示例

以下示例演示了 Math IEEEremainder() 方法对 1 值的使用。

package com.tutorialspoint;

public class MathDemo {

   public static void main(String[] args) {

      // get two double numbers
      double x = 1.0;
      double y = -1.0;
   
      // call hypot and print the result
      System.out.println("Math.IEEEremainder(" + x + "," + y + ")=" + Math.IEEEremainder(x, y));
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果 -

Math.IEEEremainder(1.0,-1.0)=0.0
java_lang_math.htm
广告