导读 您好,今天柳柳来为大家解答以上的问题。CEILING函数,ceil函数相信很多小伙伴还不知道,现在让我们一起来看看吧!1、用 法: double ceil(

您好,今天柳柳来为大家解答以上的问题。CEILING函数,ceil函数相信很多小伙伴还不知道,现在让我们一起来看看吧!

1、用 法: double ceil(double x);功 能: 返回大于或者等于指定表达式的最小整数头文件:math.h说明:float ceil ( float value )返回不小于 value 的下一个整数,value 如果有小数部分则进一位。

2、ceil() 返回的类型仍然是 float,因为 float 值的范围通常比 integer 要大。

3、#include#include intmain(void){double number=123.54;double down,up;down=floor(number);up=ceil(number);printf("originalnumber%5.2lf",number);printf("numberroundeddown%5.2lf",down);printf("numberroundedup%5.2lf",up); return0;}运行结果:originalnumber123.54numberroundeddown123.00numberroundedup124.00。

本文就为大家分享到这里,希望小伙伴们会喜欢。