C++ Math round()函数

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

Camera课程

Python教程

Java教程

Web教程

数据库教程

图形图像教程

办公软件教程

Linux教程

计算机教程

大数据教程

开发工具教程