C++ Math round()函数
此函数用于对给定的值进行四舍五入,可以是浮点型或双精度型。
例如:
round(5.8)= 6;
round(-1.1)= -1;
语法
假设一个数为’x’。语法如下:
return_type round(data_type x);
参数
x : 可以是浮点数或双精度数的值。
返回值
返回x的四舍五入值。返回值的类型可以是浮点数、双精度数或长双精度数。
示例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