C++int floor ceil round 取整数
程序员文章站
2022-06-03 08:40:10
...
近期总是需要用到C++中的各种取整数,因此对 int floor ceil round四种取整函数进行了简要的测试。
- int:去除小数位
- floor:向下取整
- ceil:向上取整
- round:四舍五入
#include <math.h>
#include <iostream>
int main(int argc,char** argv)
{
std::cout << "int(4.4):" << int(4.4) << std::endl;
std::cout << "int(4.1):" << int(4.1) << std::endl;
std::cout << "int(4.9):" << int(4.9) << std::endl;
std::cout << "int(4.50):" << int(4.50) << std::endl;
std::cout << "int(-4.9):" << int(-4.9) << std::endl;
std::cout << "std::floor(4.4):" << std::floor(4.4) << std::endl;
std::cout << "std::floor(4.1):" << std::floor(4.1) << std::endl;
std::cout << "std::floor(4.9):" << std::floor(4.9) << std::endl;
std::cout << "std::floor(4.50):" << std::floor(4.50) << std::endl;
std::cout << "std::floor(-4.9):" << std::floor(-4.9) << std::endl;
std::cout << "std::ceil(4.4):" << std::ceil(4.4) << std::endl;
std::cout << "std::ceil(4.1):" << std::ceil(4.1) << std::endl;
std::cout << "std::ceil(4.9):" << std::ceil(4.9) << std::endl;
std::cout << "std::ceil(4.50):" << std::ceil(4.50) << std::endl;
std::cout << "std::ceil(-4.9):" << std::ceil(-4.9) << std::endl;
std::cout << "std::round(4.4):" << std::round(4.4) << std::endl;
std::cout << "std::round(4.1):" << std::round(4.1) << std::endl;
std::cout << "std::round(4.9):" << std::round(4.9) << std::endl;
std::cout << "std::round(4.50):" << std::round(4.50) << std::endl;
std::cout << "std::round(-4.9):" << std::round(-4.9) << std::endl;
return 0;
}
得到输出的结果如下:
对上述实验进行总结如下:
函数 | 函数说明 | 4.4 | 4.1 | 4.9 | 4.50 | -4.9 |
---|---|---|---|---|---|---|
int | 去除整数位(不论正负) | 4 | 4 | 4 | 4 | -4 |
floor | 向下取整 | 4 | 4 | 4 | 4 | -5 |
ceil | 向上取整 | 5 | 5 | 5 | 5 | -4 |
round | 四舍五入 | 4 | 4 | 5 | 5 | -5 |
上一篇: 电商网店设计中的点、线、面详解
下一篇: 大数据环境部署——集群时间同步
推荐阅读
-
PHP取整函数:ceil,floor,round,intval的区别详细解析_php技巧
-
PHP取整函数:ceil,floor,round,intval的区别详细解析
-
php取整函数ceil,floo,round的用法及介绍
-
php中的四舍五入函数代码(floor函数、ceil函数、round与intval)
-
Math类中round、ceil和floor方法的功能
-
浅析JavaScript的几种Math函数,random(),ceil(),round(),floor()
-
oracle中函数 trunc(),round(),ceil(),floor的使用详解
-
PHP取整函数:ceil,floor,round,intval的区别详细解析
-
php取整函数ceil,floo,round的用法及介绍
-
php中的四舍五入函数代码(floor函数、ceil函数、round与intval)