其实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 ;
}
测试结果如下: