当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ Math lround()用法及代码示例


此函数用于四舍五入给定值并转换为长整数。

用法

假设一个数字是 'x'。语法是:

long int lround(data_type x);

参数

x:值可以是浮点数或双精度数。

返回值

它返回 x 的舍入值。函数的返回类型是 long int。

例子1

让我们看一个使用 lround() 函数的简单例子

#include <iostream>
#include<math.h>
using namespace std;
int main()
{
    float x=2.3;
    double y=-12.6;
    float z=23.6;
    std::cout << "The value of x is:" <<x<< std::endl;
    std::cout << "The value of y is:" <<y<< std::endl;
    std::cout << "The value of z is:" <<z<< std::endl;
    cout<<"Rounded value of x is:"<<lround(x)<< std::endl;
    cout<<"Rounded value of y is:"<<lround(y)<< std::endl;
    cout<<"Rounded value of z is:"<<lround(z)<< std::endl;
    return 0;
}

输出:

The value of x is:2.3
The value of y is:-12.6
The value of z is:23.6
Rounded value of x is:2
Rounded value of y is:-13
Rounded value of z is:24





相关用法


注:本文由纯净天空筛选整理自 C++ Math lround()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。