C++ llabs() 函數
llabs() 函數是 cstdlib 頭文件的庫函數。它用於獲取給定值的絕對值。該函數與 abs() 和 labs() 函數類似,隻是參數類型不同,它用於 long long 整數值。它接受一個參數並返回絕對值。
llabs() 函數的語法:
C++11:
long long int llabs (long long int n);
參數:
n
– 表示要找到其絕對值的值。
返回值:
這個函數的返回類型是long long int
,它返回絕對值。
例:
Input: n = -1234567890987654321 Function call: llabs(n); Output: 1234567890987654321 Input: n = 1234567890987654321 Function call: llabs(n); Output: 1234567890987654321
C++代碼演示llabs()函數的例子
// C++ code to demonstrate the example of
// llabs() function
#include <iostream>
#include <cstdlib>
using namespace std;
// main() section
int main()
{
long long int n;
n = -1234567890987654321;
cout << "llabs(" << n << "):" << llabs(n) << endl;
n = 1234567890987654321;
cout << "llabs(" << n << "):" << llabs(n) << endl;
n = -1111222233334444555;
cout << "llabs(" << n << "):" << llabs(n) << endl;
n = 1111222233334444555;
cout << "llabs(" << n << "):" << llabs(n) << endl;
return 0;
}
輸出
llabs(-1234567890987654321):1234567890987654321 llabs(1234567890987654321):1234567890987654321 llabs(-1111222233334444555):1111222233334444555 llabs(1111222233334444555):1111222233334444555
參考:C++ llabs() 函數
相關用法
- C++ llround()用法及代碼示例
- C++ lldiv()用法及代碼示例
- C++ llrint()用法及代碼示例
- 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()用法及代碼示例
注:本文由純淨天空篩選整理自 llabs() Function with Example in C++。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。