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

fmaxf函数


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

描述:

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

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


参数:
float x

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

float y

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


返回值:

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


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

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

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

    return 0;
}

输出:

fmaxf(8.0f, 2.0f) = 8.00

fmaxf(-8.0f, -2.0f) = -2.00


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