round() c++
时间: 2024-06-12 19:10:01 浏览: 164
C# Math.Round()函数问题
5星 · 资源好评率100%
round() 是 C++ 中的一个数学函数,用于对浮点数进行四舍五入。它的函数原型为:
```c++
double round(double x);
float round(float x);
long double round(long double x);
```
其中,参数 x 为要进行四舍五入的浮点数,返回值为最接近 x 的整数值。
需要注意的是,round() 函数是向最接近的偶数舍入的。例如,round(0.5) 的结果为 0,而 round(1.5) 的结果为 2。
阅读全文