📜  C++ STL-Math.remainder()函数

📅  最后修改于: 2020-10-18 13:58:43             🧑  作者: Mango

C++ STL math.remainder()

该函数查找分子/分母的浮点余数(四舍五入到最接近的整数值)。

余数公式:

Remainder = numerator - (r*denominator)

其中,r =分子/分母,并且四舍五入为最接近的整数值。

句法

考虑一个分子“ n”和分母“ d”。语法为:

return_type remainder(data_type n,data_type d);

注意:return_type可以是float,double或long double。

参数

n:分子的值。

d:分母的值。

返回值

它返回浮点余数n / d。

例子1

让我们看一个简单的例子。

#include 
#include
#include 
using namespace std;
int main()
{
    float n=5.7;
    float d=8.9;
    std::cout << "Values of numerator and denominator are :" <

输出:

Values of numerator and denominator are :5.7 , 8.9
Remainder is :-3.2