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++。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。