当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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



描述

这个java.lang.Math.IEEEremainder(double f1, double f2)返回 计算 IEEE 754 标准规定的两个参数的余数运算。余数在数学上等于 f1 - f2 xn,其中 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.tutorialspoint;

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

相关用法


注:本文由纯净天空筛选整理自 Java.lang.Math.IEEEremainder() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。