Java StrictMath IEEEremainder()方法

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

余数的算术值等于 f1 - f2 × n, 其中n是整数数学最接近商的确切数学值 f1/f2, 而如果两个整数都同样接近f1/f2,则n是整数,它是偶数。

如果余数是零,它的符号与第一个参数的符号相同。它包括一些情况:

  • 如果任一参数为NaN,或者第一个参数为无穷大,或者第二个参数是正零或负零,那么结果为NaN。
  • 如果第一个参数是有限的,第二个参数为无穷大,那么结果是一样的第一个参数。

1 语法

public static double IEEEremainder(double f1, double f2)

2 参数

f1 :这是被除数。

f2 :这是除数。

3 返回值

此方法返回f1除以f2的余数。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * Java StrictMath IEEEremainder()方法
 */
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

 

热门文章

优秀文章