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


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



描述

这个java.lang.StrictMath.IEEEremainder() 方法计算两个参数的余数运算。

余数在数学上等于f1 - f2 × n, 在哪里n是最接近商的精确数学值的数学整数f1/f2,如果两个数学整数同样接近f1/f2,则 n 是偶数的整数。

如果余数为零,则其符号与第一个参数的符号相同。它包括某些情况 -

  • 如果任一参数为 NaN,或第一个参数为无穷大,或第二个参数为正零或负零,则结果为 NaN。
  • 如果第一个参数是有限的,而第二个参数是无限的,则结果与第一个参数相同。

声明

以下是声明java.lang.StrictMath.IEEEremainder()方法

public static double IEEEremainder(double f1, double f2)

参数

  • f1——这是被除数。

  • f2- 这是除数。

返回值

当 f1 除以 f2 时,此方法返回余数。

异常

NA

示例

下面的例子展示了 java.lang.StrictMath.IEEEremainder() 方法的用法。

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);
   }
}

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

remainder = 5.330000000000005
remainder = 30.12

相关用法


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