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

ceilf函数


概要:
#include <math.h>
float ceilf(float x);

描述:

该函数计算不小于参数x的最小整数值。


参数:
float x

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


返回值:

函数返回浮点数形式表示的x值。


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

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

int main(void)
{
    float x = 2.3f;
    float y;

    y = ceilf(x);
    printf("The smallest integer value not less than %.6f is %.6f.\n", x, y);

    return 0;
}

输出:

The smallest integer value not less than 2.300000 is 3.000000.


相关内容:
ceil double类型的向上取整函数。
ceill long double类型的向上取整函数。