ceilf函数
概要:
#include <math.h> float ceilf(float x);
描述:
该函数计算不小于参数的最小整数值。
参数:
float x
参数为一个float类型的浮点数。
返回值:
函数返回浮点数形式表示的值。
范例:
|
|
输出:
The smallest integer value not less than 2.300000 is 3.000000.
相关内容:
ceil | double类型的向上取整函数。 |
ceill | long double类型的向上取整函数。 |