c++

c++中round函数的作用是什么

小亿
179
2024-01-27 13:17:18
栏目: 编程语言

在C++中,round()函数用于将一个浮点数四舍五入为最接近的整数。它的作用是将浮点数值取整,返回最接近的整数值,返回类型为double。round()函数的原型如下:

double round(double x);

round()函数的工作原理如下:

下面是几个round()函数的示例:

#include <iostream>
#include <cmath>

int main() {
    double x = 3.7;
    double y = 4.3;
    
    std::cout << "Round of " << x << " is " << round(x) << std::endl;  // 输出:Round of 3.7 is 4
    std::cout << "Round of " << y << " is " << round(y) << std::endl;  // 输出:Round of 4.3 is 4
    
    return 0;
}

在上面的例子中,round(x)将3.7四舍五入为4,round(y)将4.3四舍五入为4。

0
看了该问题的人还看了