其实c++自身是没有四舍五入函数round()的,若果你要用到的话,可以自己写一个round(),不过要用到floor()和ceil这两个函数如下:
1 #include<iostream> 2 #include<cmath> 3 using namespace std; 4 5 double round(double x) 6 { 7 return (x>0.0)? floor(x+0.5):ceil(x-0.5); 8 } 9 int main() 10 { 11 cout<<round(0.4)<<" "<<round(1.2)<<" "<<round(2.7)<<" "; 12 cout<<round(-5.4)<<" "<<round(-1.2)<<" "<<round(-2.7)<<" "; 13 return 0; 14 }
测试结果如下: