c++四舍五入函数round()

其实c++自身是没有四舍五入函数round()的,若果你要用到的话,可以自己写一个round(),不过要用到floor()和ceil这两个函数如下:

 #include<iostream>
#include<cmath>
using namespace std; double round(double x)
{
return (x>0.0)? floor(x+0.5):ceil(x-0.5);
}
int main()
{
cout<<round(0.4)<<" "<<round(1.2)<<" "<<round(2.7)<<"\n";
cout<<round(-5.4)<<" "<<round(-1.2)<<" "<<round(-2.7)<<"\n";
return ;
}

测试结果如下:

c++四舍五入函数round()

上一篇:c语言学习之基础知识点介绍(十九):内存操作函数


下一篇:改写python round()函数,解决四舍五入问题 round(1.365,2)=1.36