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


C++ Math fmod()用法及代码示例


该函数查找分子/分母的浮点余数并四舍五入到零。

fmod 的公式:

fmod= numerator - t*denominator

其中 't' 是分子/分母的截断值。

用法

考虑分子 'n' 和分母 'd'。语法是:

double fmod(double n,double d);

参数

n:分子的值。

d:分母的值

返回值

它返回 n/d 的浮点余数。

注意:如果分母的值为零,则 fmod() 函数将返回 NAN(Not a Number)。

例子1

让我们看一个具有相同类型参数的简单示例。

#include <iostream>
#include<math.h>
using namespace std;
int main()
{
    double n=4.2;
    double d=7.8;
    std::cout << "The values of numerator and denominator are:" <<n<<" , "<< d<<     std::endl;
    std::cout << "fmod of these values is:"<<fmod(n,d) <<std::endl;
    return 0;
}

输出:

The values of numerator and denominator are:4.2 , 7.8
fmod of these values is:4.2

例子2

让我们看看具有不同类型参数的简单示例。

#include <iostream>
#include<math.h>
using namespace std;
int main()
{
    float n=7.8;
    int d=9;
    std::cout << "The values of numerator and denominator are:" <<n<<" , "<< d<< std::endl;
    std::cout << "fmod of these values is:"<<fmod(n,d) <<std::endl;
    return 0;
}

输出:

The values of numerator and denominator are:7.8 , 9
fmod of these values is:7.8

例子3

让我们看一个简单的例子,当分母的值为零时。

#include <iostream>
#include<math.h>
using namespace std;
int main()
{
    float n=16.7;
    int d=0;
    std::cout << "The values of numerator and denominator are:" <<n<<" , "<< d<< std::endl;
    std::cout << "fmod of these values is:"<<fmod(n,d) <<std::endl;
    return 0;
}

输出:

The values of numerator and denominator are:16.7 , 0
fmod of these values is:-nan





相关用法


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