您当前的位置:滚动 >  >> 正文
ceil函数是什么意思_ceil函数

时间:2023-06-21 15:25:06    来源:互联网


(相关资料图)

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

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

3、#include#includeintmain(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。

本文分享完毕,希望对大家有所帮助。

关键词: