C标准库之数学函数ceil
本帖最后由 小楼寂寞新雨月 于 2014-9-13 17:16 编辑功能:求不小于x的最小整数
函数原型:double ceil(double x);
要求:
函数需要的头文件
ceil<math.h>
参数:
参数说明
x双精度数
返回值:不小于x的最小整数
举例:#include <stdio.h>
#include <float.h>
#include <ctype.h>
#include <math.h>
int main()
{
double m = 6.123,n ; //为变量赋初值
n = ceil(m) ; //求不小于m的最小整数
printf("%f\n",n);
}
页:
[1]