函数
<cmath> <ctgmath>

ceil

double ceil (double x);
     double ceil  (double x);      float ceilf (float x);long double ceill (long double x);
     double ceil (double x);      float ceil (float x);long double ceil (long double x);
     double ceil (double x);      float ceil (float x);long double ceil (long double x);     double ceil (T x);           // additional overloads for integral types
向上取整
x 向上取整,返回不小于 x 的最小整数值。

头文件 <tgmath.h> 提供了此函数的类型通用宏版本。
此头文件 (<cmath>) 中为整型提供了额外的重载:这些重载在计算前有效地将 x 转换为 double(为任意整型T 定义)。

参数

x
要向上取整的值。

返回值

不小于 x 的最小整数值(以浮点值的形式)。

示例

1
2
3
4
5
6
7
8
9
10
11
12
/* ceil example */
#include <stdio.h>      /* printf */
#include <math.h>       /* ceil */

int main ()
{
  printf ( "ceil of 2.3 is %.1f\n", ceil(2.3) );
  printf ( "ceil of 3.8 is %.1f\n", ceil(3.8) );
  printf ( "ceil of -2.3 is %.1f\n", ceil(-2.3) );
  printf ( "ceil of -3.8 is %.1f\n", ceil(-3.8) );
  return 0;
}

输出

ceil of 2.3 is 3.0
ceil of 3.8 is 4.0
ceil of -2.3 is -2.0
ceil of -3.8 is -3.0


另见