重庆分公司,新征程启航
为企业提供网站建设、域名注册、服务器等服务
目录
创新互联专注于龙海网站建设服务及定制,我们拥有丰富的企业做网站经验。 热诚为您提供龙海营销型网站建设,龙海网站制作、龙海网页设计、龙海网站官网定制、微信小程序定制开发服务,打造龙海网络公司原创品牌,更为您提供龙海网站排名全网营销落地服务。
零基础 C/C++ 学习路线推荐 : C/C++ 学习目录 >> C 语言基础入门
零基础 C/C++ 学习路线推荐 : C/C++ 学习目录 >> C++ 面向对象
零基础 C/C++ 学习路线推荐 : C/C++ 学习目录 >> C++ 设计模式
零基础 C/C++ 学习路线推荐 : C/C++ 学习目录 >> C++ STL
零基础 C/C++ 学习路线推荐 : C/C++ 学习目录 >> C/C++ 技术杂谈
零基础 C/C++ 学习路线推荐 : C/C++ 学习目录 >> C/C++ 常用函数
在 C
语言中 ceil
函数用于对浮点数 float
或者 double
或者 longdouble
向上取整,也是一个比较常用的函数 ,语法如下:
#include //需要包含头文件
extern float ceilf(float); //参数为flot类型
extern double ceil(double); //参数为double类型
extern long double ceill(long double); //参数为long double类型
注意:ceil
函数的返回是 double
类型,并非 int
类型;
ceil
函数主要用于对浮点数向上取整,示例如下:
/******************************************************************************************/
//@Author:猿说编程
//@Blog(个人博客地址): www.codersrc.com
//@File:C/C++ ceil 函数
//@Time:2021/08/26 08:00
//@Motto:不积跬步无以至千里,不积小流无以成江海,程序人生的精彩需要坚持不懈地积累!
/******************************************************************************************/
#include "stdafx.h"
#include "stdio.h"
#include "stdlib.h"
#include "windows.h"
#include //需要包含头文件
int main()
{
printf("ceil(50.2) = %f \n", ceil(50.2));
printf("ceil(0.2) = %f \n", ceil(0.2));
printf("ceil(-50.2) = %f \n", ceil(-50.2));
printf("ceil(-0.2) = %f \n", ceil(-0.2));
printf("ceil(100.2) = %f \n", ceil(100.2));
system("pause");
return 0;
}
/*
输出:
ceil(50.2) = 51.000000
ceil(0.2) = 1.000000
ceil(-50.2) = -50.000000
ceil(-0.2) = -0.000000
ceil(100.2) = 101.000000
Press any key to continue . . .
*/
未经允许不得转载:猿说编程 » C/C++ ceil 函数
本文由博客 - 猿说编程 猿说编程 发布!