此函数用于四舍五入可以是浮点数或双精度数的给定值。
例如:
round(5.8)= 6;
round(-1.1)= -1;
用法
假设一个数字是 'x'。语法是:
return_type round(data_type x);
参数
x:值可以是浮点数或双精度数。
返回值
它返回 x 的舍入值。值的返回类型可以是 float、double 或 long double。
例子1
让我们看一个简单的例子,当 x 的值为正时
#include <iostream>
#include<math.h>
using namespace std;
int main()
{
float x=8.3;
std::cout << "The value of x is:" <<x<< std::endl;
cout<<"Rounded value of x is:"<<round(x);
return 0;
}
输出:
The value of x is:8.3 Rounded value of x is:8
例子2
当 x 的值为负时,让我们看一个简单的例子。
#include <iostream>
#include<math.h>
using namespace std;
int main()
{
double x=-9.9;
std::cout << "The value of x is:" <<x<< std::endl;
cout<<"Rounded value of x is:"<<round(x);
return 0;
}
输出:
The value of x is:-9.9 Rounded value of x is:-10
相关用法
- C++ Math remquo()用法及代码示例
- C++ Math remainder()用法及代码示例
- C++ Math rint()用法及代码示例
- C++ Math scalbn()用法及代码示例
- C++ Math acosh()用法及代码示例
- C++ Math asinh()用法及代码示例
- C++ Math isgreater()用法及代码示例
- C++ Math fabs()用法及代码示例
- C++ Math islessgreater()用法及代码示例
- C++ Math log2()用法及代码示例
- C++ Math nearbyint()用法及代码示例
- C++ Math tan()用法及代码示例
- C++ Math log()用法及代码示例
- C++ Math nextafter()用法及代码示例
- C++ Math fdim()用法及代码示例
- C++ Math isfinite()用法及代码示例
- C++ Math erfc()用法及代码示例
- C++ Math sinh()用法及代码示例
- C++ Math scalbln()用法及代码示例
- C++ Math cosh()用法及代码示例
注:本文由纯净天空筛选整理自 C++ Math round()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。