round函数c++
时间: 2023-08-16 15:15:58 浏览: 117
C++中的round函数用于将一个浮点数四舍五入为最接近的整数。它的函数原型如下:
```cpp
double round(double x);
float round(float x);
long double round(long double x);
```
这些函数接受一个浮点数作为参数,并返回最接近的整数。如果有两个整数与参数的距离相等,它将返回偶数。
下面是一个使用round函数的示例:
```cpp
#include <iostream>
#include <cmath>
int main() {
double num = 3.7;
int roundedNum = round(num);
std::cout << "Rounded number: " << roundedNum << std::endl;
return 0;
}
```
这个示例将输出 "Rounded number: 4"。注意,round函数需要包含头文件cmath。
相关问题
C++ round函数
C++的`round()`函数是用来四舍五入一个浮点数的。它的声明如下:
```c++
double round(double x);
float round(float x);
long double round(long double x);
```
`round()`函数返回最接近参数x的整数值,如果x与两个整数相等,则返回偶数值。
例如,`round(2.3)`将返回`2`,`round(2.5)`将返回`2`,`round(2.7)`将返回`3`。
c++round函数
C++中的round函数是用来四舍五入的,其函数原型为:
```c++
double round(double x);
float round(float x);
long double round(long double x);
```
其中,参数x为需要进行四舍五入的数值,返回值为四舍五入后的结果。
需要注意的是,round函数是C++11标准新增的函数,如果使用较早版本的编译器可能会出现编译错误。
阅读全文