floorl函数
概要:
#include <math.h> long double floorl(long double x);
描述:
该函数计算不大于参数的最大整数值。
参数:
long double x
参数为一个long double类型的浮点数。
返回值:
函数返回浮点数形式表示的值。
范例:
|
|
输出:
The largest integer value not greater than 2.300000 is 2.000000.
相关内容:
floor | double类型的向下取整函数。 |
floorf | float类型的向下取整函数。 |