该函数返回两个数字之间的最大值。
条件:
考虑两个数字 'x' 和 'y'。
如果(x>y): 它返回 x。
如果(y>x): 它返回 y。
如果 (x=nan): 它返回 y。
如果 (y=nan): 它返回 x。
用法
float fmax(float x, float y);
double fmax(double x, double y);
long double fmax(long double x, long double y);
promoted fmax(Arithmetic x, Arithmetic y);
注意:如果任何参数具有整数类型,则将其强制转换为 double。如果任何其他参数是 long double,则将其强制转换为 long double。
参数
(x,y):计算最大值的值。
返回值
它返回两个数字之间的最大值。
例子1
让我们看一个简单的例子。
#include <iostream>
#include<math.h>
using namespace std;
int main()
{
double x=3.3;
float y=6.9;
std::cout <<"Values of x and y are:"<<x<<","<<y<< std::endl;
cout<<"Maximum value is:"<<fmax(x,y);
return 0;
}
输出:
Values of x and y are:3.3,6.9 Maximum value is:6.9
在本例中,y 的值大于 x 的值。因此,fmax() 函数返回 y 的值。
例子2
当其中一个值为 nan 时,让我们看一个简单的示例。
#include <iostream>
#include<math.h>
using namespace std;
int main()
{
double x=1.3;
float y=NAN;
std::cout <<"Values of x and y are:"<<x<<","<<y<< std::endl;
cout<<"Maximum value is:"<<fmax(x,y);
return 0;
}
输出:
Values of x and y are:1.3,nan Maximum value is:1.3
本例中y的值为nan。因此,fmax()函数返回x的值。
相关用法
- C++ Math fma()用法及代码示例
- C++ Math fmin()用法及代码示例
- C++ Math fmod()用法及代码示例
- C++ Math fabs()用法及代码示例
- C++ Math fdim()用法及代码示例
- C++ Math fpclassify()用法及代码示例
- C++ Math frexp()用法及代码示例
- C++ Math floor()用法及代码示例
- 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 fmax()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。