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


C++ fmod()用法及代碼示例


C++ 中的fmod() 函數計算分子/分母的浮點餘數(向零舍入)

C++ 中的fmod() 函數計算分子/分母的浮點餘數(向零舍入)。

fmod (x, y) = x - tquote * y

其中 tquote 被截斷,即(向零舍入)x/y 的結果。

fmod() 原型 [從 C++ 11 標準開始]

double fmod(double x, double y);
float fmod(float x, float y);
long double fmod(long double x, long double y);
double fmod(Type1 x, Type2 y); // Additional overloads for other combinations of arithmetic types

fmod() 函數接受兩個參數並返回 double、float 或 long double 類型的值。該函數在<cmath> 頭文件中定義。

參數:

  • x:分子的值。
  • y:分母的值。

返回:

fmod() 函數返回 x/y 的浮點餘數。如果分母 y 為零,fmod() 返回 NaN(非數字)。

示例 1:fmod() 如何在 C++ 中工作?

#include <iostream>
#include <cmath>

using namespace std;

int main()
{
    double x = 7.5, y = 2.1;
    double result = fmod(x, y);
    cout << "Remainder of " << x << "/" << y << " = " << result << endl;
    
    x = -17.50, y = 2.0;
    result = fmod(x, y);
    cout << "Remainder of " << x << "/" << y << " = " << result << endl;
    
    return 0;
}

運行程序時,輸出將是:

Remainder of 7.5/2.1 = 1.2
Remainder of -17.5/2 = -1.5

示例 2:fmod() 函數用於不同類型的參數

#include <iostream>
#include <cmath>

using namespace std;

int main()
{
    double x = 12.19, result;
    int y = -3;
    
    result = fmod(x, y);
    cout << "Remainder of " << x << "/" << y << " = " << result << endl;
    
    y = 0;
    result = fmod(x, y);
    cout << "Remainder of " << x << "/" << y << " = " << result << endl;

    return 0;
}

運行程序時,輸出將是:

Remainder of 12.19/-3 = 0.19
Remainder of 12.19/0 = -nan

相關用法


注:本文由純淨天空篩選整理自 C++ fmod()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。