zhangas

Pay more attention

0%

向上取整函数

头文件<math.h>

原型

1
double ceil(double x)

调用

1
2
int x;
cout<<ceil(x*1.0);

function:返回大于或等于 x 的最小的整数值.
warning:当-1< x < 0 返回值是 -0