该函数计算两个数字之间的正差。
条件:
考虑两个数字 'x' 和 'y':
如果(x>y): 它返回 (x-y);
如果(y>x): 它返回零。
用法
float fdim(float x, float y);
double fdim(double x, double y);
long double fdim(long double x, long double y);
promoted fdim(Arithmetic x, Arithmetic y);
注意:如果任何参数具有整数类型,则将其强制转换为 double。如果任何其他参数是 long double,则将其强制转换为 long double。
参数
(x,y):要计算其差值的值。
返回值
它返回 x 和 y 之间的正差。
例子1
让我们看一个简单的例子,当 'x' 的值大于 'y' 的值时。
#include <iostream>
#include<math.h>
using namespace std;
int main()
{
float x=9.4;
float y=8.3;
std::cout <<"Values of x and y are:"<<x<<","<<y<< std::endl;
cout<<"Positive difference between two numbers is:"<<fdim(x,y);
return 0;
}
输出:
Values of x and y are:9.4,8.3 Positive difference between two numbers is:1.1
在这个例子中,x 的值大于 y 的值,fdim() 函数找到了 x 和 y 之间的正差。
例子2
让我们看一个简单的例子,当 'x' 的值小于 'y' 的值时。
#include <iostream>
#include<math.h>
using namespace std;
int main()
{
double x=3.3;
float y= 4.7;
std::cout <<"Values of x and y are:"<<x<<","<<y<< std::endl;
cout<<"Positive difference between two numbers is:"<<fdim(x,y);
return 0;
}
输出:
Values of x and y are:3.3,4.7 Positive difference between two numbers is:0
在此示例中,x 的值小于 y 的值,因此 fdim() 函数返回零值。
相关用法
- C++ Math fabs()用法及代码示例
- C++ Math fma()用法及代码示例
- C++ Math fpclassify()用法及代码示例
- C++ Math fmin()用法及代码示例
- C++ Math frexp()用法及代码示例
- C++ Math fmax()用法及代码示例
- C++ Math floor()用法及代码示例
- C++ Math fmod()用法及代码示例
- C++ Math scalbn()用法及代码示例
- C++ Math acosh()用法及代码示例
- C++ Math asinh()用法及代码示例
- C++ Math isgreater()用法及代码示例
- C++ Math islessgreater()用法及代码示例
- C++ Math log2()用法及代码示例
- C++ Math nearbyint()用法及代码示例
- C++ Math tan()用法及代码示例
- C++ Math log()用法及代码示例
- C++ Math nextafter()用法及代码示例
- C++ Math isfinite()用法及代码示例
- C++ Math erfc()用法及代码示例
注:本文由纯净天空筛选整理自 C++ Math fdim()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。