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


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。