C++ llround() 函數
llround() 函數是 cmath 頭文件的庫函數,用於對給定值進行四舍五入並轉換為 long long 整數,它接受一個數字並返回最接近該數字的整數(long long int)值(有中途情況) )。
llround() 函數的語法:
llround(x);
參數: x
– 是在中途情況下最接近零的四舍五入數字。
返回值: long long int
– 它返回 long long int 類型值,即數字的舍入值x
。
例:
Input: float x = 2.3; Function call: llround(x); Output: 2 Input: float x = 2.8; Function call: llround(x); Output: 3
C++代碼演示llround()函數的例子
// C++ code to demonstrate the example of
// llround() function
#include <iostream>
#include <cmath>
using namespace std;
// main() section
int main()
{
float x;
x = 15.3;
cout<<"llround("<<x<<"):"<<llround(x)<<endl;
x = 15.5;
cout<<"llround("<<x<<"):"<<llround(x)<<endl;
x = 15.8;
cout<<"llround("<<x<<"):"<<llround(x)<<endl;
x = -15.3;
cout<<"llround("<<x<<"):"<<llround(x)<<endl;
x = -15.5;
cout<<"llround("<<x<<"):"<<llround(x)<<endl;
x = -15.8;
cout<<"llround("<<x<<"):"<<llround(x)<<endl;
return 0;
}
輸出
llround(15.3):15 llround(15.5):16 llround(15.8):16 llround(-15.3):-15 llround(-15.5):-16 llround(-15.8):-16
相關用法
- C++ llrint()用法及代碼示例
- C++ lldiv()用法及代碼示例
- C++ llabs()用法及代碼示例
- C++ list assign()用法及代碼示例
- C++ log2()用法及代碼示例
- C++ lrint() and llrint()用法及代碼示例
- C++ list::remove()、list::remove_if()用法及代碼示例
- C++ lrint()用法及代碼示例
- C++ list back()用法及代碼示例
- C++ list merge()用法及代碼示例
- C++ ldiv()用法及代碼示例
- C++ list remove()用法及代碼示例
- C++ log1p()用法及代碼示例
- C++ list push_back()用法及代碼示例
- C++ list::operator=用法及代碼示例
- C++ list erase()用法及代碼示例
- C++ list::empty()、list::size()用法及代碼示例
- C++ list resize()用法及代碼示例
- C++ list pop_front()用法及代碼示例
- C++ list empty()用法及代碼示例
注:本文由純淨天空篩選整理自 llround() function with example in C++。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。