函数名: ceil
头文件:<math.h>
函数原型: double ceil(double x);
功 能: 向上舍入
参数: double x 被操作的双精度值
返回值: 返回用双精度表示的 >= x 的最小的整数值。
程序例: 求number的向上与向下取整,并将结果输出
#include<math.h>#include<stdio.h>intmain(void){doublenumber=123.54;doubledown,up;down=floor(number);up=ceil(number);printf(originalnumber%5.2lfn,number);printf(numberroundeddown%5.2lfn,down);printf(numberroundedup%5.2lfn,up);return0;}
运行结果:
originalnumber123.54numberroundeddown123.00numberroundedup124.00