當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


C++ lround()用法及代碼示例


C++ 中的lround() 函數對最接近參數的整數值進行四舍五入,中間情況從零四舍五入。返回值的類型為 long int.

C++ 中的lround() 函數對最接近參數的整數值進行四舍五入,中間情況從零四舍五入。返回的值是 long int. 類型。它類似於 round() 函數,但返回一個 long int,而 round 返回與輸入相同的數據類型。

lround() 原型 [從 C++ 11 標準開始]

long int lround(double x);
long int lround(float x);
long int lround(long double x);
long int lround(T x); // For integral type

lround() 函數采用單個參數並返回 long int. 類型的值。該函數在 <cmath> 頭文件中定義。

參數:

lround() 函數采用單個參數值進行舍入。

返回:

lround() 函數返回最接近 x 的整數值,中間情況從零四舍五入。返回值的類型為 long int.

示例 1:lround() 如何在 C++ 中工作?

#include <iostream>
#include <cmath>

using namespace std;

int main()
{   
    long int result;
    double x = 11.16;
    result = lround(x);
    cout << "lround(" << x << ") = " << result << endl;

    x = 13.87;
    result = lround(x);
    cout << "lround(" << x << ") = " << result << endl;
    
    x = 50.5;
    result = lround(x);
    cout << "lround(" << x << ") = " << result << endl;
    
    x = -11.16;
    result = lround(x);
    cout << "lround(" << x << ") = " << result << endl;

    x = -13.87;
    result = lround(x);
    cout << "lround(" << x << ") = " << result << endl;
    
    x = -50.5;
    result = lround(x);
    cout << "lround(" << x << ") = " << result << endl;
    
    return 0;
}

運行程序時,輸出將是:

lround(11.16) = 11
lround(13.87) = 14
lround(50.5) = 51
lround(-11.16) = -11
lround(-13.87) = -14
lround(-50.5) = -51

示例 2:用於整數類型的 lround() 函數

#include <iostream>
#include <cmath>

using namespace std;

int main()
{
    int x = 15;
    long int result;
    result = lround(x);
    cout << "lround(" << x << ") = " << result << endl;

    return 0;
}

運行程序時,輸出將是:

lround(15) = 15

對於整數值,應用 lround 函數返回與輸入相同的值。所以在實踐中它並不常用於整數值。

相關用法


注:本文由純淨天空篩選整理自 C++ lround()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。