📜  C++ STL-math.round()函数

📅  最后修改于: 2020-10-18 13:21:19             🧑  作者: Mango

C++ STL math.回合()

此函数用于舍入给定值,该值可以是float或double。

例如:

round(5.8)= 6;
round(-1.1)= -1;

句法

假设数字是“ x”。语法为:

return_type round(data_type x);

参数

x:可以是float或double的值。

返回值

它返回x的舍入值。值的返回类型可以是float,double或long double。

例子1

让我们看一个简单的例子,当x的值为正时

#include 
#include
using namespace std;
int main()
{
    float x=8.3;
    std::cout << "The value of x is : " <

输出:

The value of x is : 8.3
Rounded value of x is : 8   

例子2

让我们看一个简单的例子,当x的值为负数时。

#include 
#include
using namespace std;
int main()
{
    double x=-9.9;
    std::cout << "The value of x is : " <

输出:

The value of x is : -9.9
Rounded value of x is : -10