📅  最后修改于: 2020-10-18 13:11:31             🧑  作者: Mango
该函数返回两个数字之间的最大值。
考虑两个数字“ x”和“ y”。
If(x> y):返回x。 If(y> x):返回y。 if(x = nan):返回y。 if(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):在其中计算最大值的值。
它返回两个数字之间的最大值。
让我们看一个简单的例子。
#include
#include
using namespace std;
int main()
{
double x=3.3;
float y=6.9;
std::cout <<"Values of x and y are :"<
输出:
Values of x and y are :3.3,6.9
Maximum value is :6.9
在此示例中,y的值大于x的值。因此,fmax()函数返回y的值。
让我们看一个简单的示例,其中一个值是nan。
#include
#include
using namespace std;
int main()
{
double x=1.3;
float y=NAN;
std::cout <<"Values of x and y are :"<
输出:
Values of x and y are :1.3,nan
Maximum value is :1.3
在此示例中,y的值为nan。因此,fmax()函数返回x的值。