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


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()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。