ceil
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <math.h> 中定义
|
||
float ceilf( float arg ); |
||
double ceil( double arg ); |
||
long double ceill( long double arg ); |
||
计算最接近的整数不小于
arg
. 原文:
Computes nearest integer not less than
arg
. 目录 |
[编辑] 参数
arg | - | 浮点值
|
[编辑] 返回值
最接近的整数不小于
arg
[编辑] 注释
整数值可以始终代表给定的浮点类型.
原文:
The integer value can be always represented by the given floating point type.
[编辑] 示例
本章尚未完成 原因:暂无示例 |
[编辑] 另请参阅
最接近的整数不大于给定值 原文: nearest integer not greater than the given value (函数) | |
(C99) |
最接近的整数的幅值比不大于给定值 原文: nearest integer not greater in magnitude than the given value (函数) |
(C99) (C99) (C99) |
最接近的整数,四舍五入的距离零中途情况下 原文: nearest integer, rounding away from zero in halfway cases (函数) |
C++ documentation for ceil
|