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

ceil函数


概要:
#include <math.h>
double ceil(double x);

描述:

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


参数:
double x

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


返回值:

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


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

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

int main(void)
{
    double x = 2.3;
    double y;

    y = ceil(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.


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