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


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


C++ lround() 函數

lround() 函數是 cmath 頭文件的庫函數,用於對給定值進行四舍五入並轉換為長整數,它接受一個數字並返回最接近該數字的整數(long int)值(有中途情況)。

lround() 函數的語法:

    lround(x);

參數: x– 是在中途情況下最接近零的四舍五入數字。

返回值: long int– 它返回 long int 類型值,即數字的舍入值x

例:

    Input:
    float x = 2.3;    
    Function call:
    lround(x);    
    Output:
    2

    Input:
    float x = 2.8;
    Function call:
    lround(x);    
    Output:
    3

C++代碼演示lround()函數的例子

// C++ code to demonstrate the example of 
// lround() function

#include <iostream>
#include <cmath>
using namespace std;

// main() section
int main()
{
    float x;
    
    x = 15.3;
    cout<<"lround("<<x<<"):"<<lround(x)<<endl;

    x = 15.5;
    cout<<"lround("<<x<<"):"<<lround(x)<<endl;

    x = 15.8;
    cout<<"lround("<<x<<"):"<<lround(x)<<endl;

    x = -15.3;
    cout<<"lround("<<x<<"):"<<lround(x)<<endl;

    x = -15.5;
    cout<<"lround("<<x<<"):"<<lround(x)<<endl;

    x = -15.8;
    cout<<"lround("<<x<<"):"<<lround(x)<<endl;    

    return 0;
}

輸出

lround(15.3):15
lround(15.5):16
lround(15.8):16
lround(-15.3):-15
lround(-15.5):-16
lround(-15.8):-16


相關用法


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