当前位置: C语言 -- 标准库 -- <math.h> -- fmax

fmax函数


概要:
#include <math.h>
double fmax(double x, double y);

描述:

该函数确定其参数的较大值。

非数值(NaN)参数视为是缺失数据:如果一个参数是非数值(NaN),另一个参数是数值,函数将返回数值。


参数:
double x

参数为一个double类型的浮点数。

double y

参数为一个double类型的浮点数。


返回值:

函数返回其参数的较大值。


范例:
1 
2 
3 
4 
5 
6 
7 
8 
9 
10 
11 
12 
13 
/*函数fmax范例*/

#include <math.h>
#include <stdio.h>

int main(void)
{
    printf("fmax(8.0, 2.0) = %.2f\n", fmax(8.0, 2.0));
    printf("fmax(-8.0, -2.0) = %.2f\n", fmax(-8.0, -2.0));

    return 0;
}

输出:

fmax(8.0, 2.0) = 8.00

fmax(-8.0, -2.0) = -2.00


相关内容:
fmaxf float类型的确定较大值函数。
fmaxl long double类型的确定较大值函数。