该函数查找分子/分母的浮点余数(四舍五入到最接近的整数值)。
余数公式:
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 <iostream>
#include<math.h>
#include <cfenv>
using namespace std;
int main()
{
float n=5.7;
float d=8.9;
std::cout << "Values of numerator and denominator are:" <<n <<" , "<<d<<std::endl;
cout<<"Remainder is:"<<remainder(n,d);
return 0;
}
输出:
Values of numerator and denominator are:5.7 , 8.9 Remainder is:-3.2
相关用法
- C++ Math remquo()用法及代码示例
- C++ Math rint()用法及代码示例
- C++ Math round()用法及代码示例
- C++ Math scalbn()用法及代码示例
- C++ Math acosh()用法及代码示例
- C++ Math asinh()用法及代码示例
- C++ Math isgreater()用法及代码示例
- C++ Math fabs()用法及代码示例
- C++ Math islessgreater()用法及代码示例
- C++ Math log2()用法及代码示例
- C++ Math nearbyint()用法及代码示例
- C++ Math tan()用法及代码示例
- C++ Math log()用法及代码示例
- C++ Math nextafter()用法及代码示例
- C++ Math fdim()用法及代码示例
- C++ Math isfinite()用法及代码示例
- C++ Math erfc()用法及代码示例
- C++ Math sinh()用法及代码示例
- C++ Math scalbln()用法及代码示例
- C++ Math cosh()用法及代码示例
注:本文由纯净天空筛选整理自 C++ Math remainder()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。