fmaxl函数
概要:
#include <math.h> long double fmaxl(long double x, long double y);
描述:
该函数确定其参数的较大值。
非数值(NaN)参数视为是缺失数据:如果一个参数是非数值(NaN),另一个参数是数值,函数将返回数值。
参数:
long double x
参数为一个long double类型的浮点数。
long double y
参数为一个long double类型的浮点数。
返回值:
函数返回其参数的较大值。
范例:
|
|
输出:
fmaxl(8.0L, 2.0L) = 8.00
fmaxl(-8.0L, -2.0L) = -2.00
相关内容:
fmax | double类型的确定较大值函数。 |
fmaxf | float类型的确定较大值函数。 |