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

  其实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)<<"\n";
12     cout<<round(-5.4)<<" "<<round(-1.2)<<" "<<round(-2.7)<<"\n";
13     return 0;
14 }

 

测试结果如下:

 

posted @ 2020-04-25 22:01  和运气碰碰  阅读(6155)  评论(1编辑  收藏  举报