C++ 中的llabs() 函数返回 long long int 数据的绝对值。
llabs() 函数可以被认为是 abs() 的 long long int
版本。
它在<cstdlib> 头文件中定义。
[Mathematics] |x| = llabs(x) [C++ Programming]
llabs() 原型 [从 C++ 11 标准开始]
long long llabs(long long x); long long int llabs(long long int x);
llabs() 函数采用 long long
或 long long int
类型的单个参数并返回相同类型的值。
参数:
x
:返回绝对值的 long long 或 long long int 数据。
返回:
llabs() 函数返回 x 的绝对值,即 |x|。
示例:llabs() 函数如何在 C++ 中工作?
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
long long x,y;
x = -79182028361LL;
y = 129301730192LL;
cout << "llabs(" << x << ") = |" << x << "| = " << llabs(x) << endl;
cout << "llabs(" << y << ") = |" << y << "| = " << llabs(y) << endl;
return 0;
}
运行程序时,输出将是:
llabs(-79182028361) = |-79182028361| = 79182028361 llabs(129301730192) = |129301730192| = 129301730192
相关用法
- C++ llround()用法及代码示例
- C++ lldiv()用法及代码示例
- C++ llrint()用法及代码示例
- C++ list assign()用法及代码示例
- C++ log2()用法及代码示例
- C++ list front()用法及代码示例
- C++ list::remove()、list::remove_if()用法及代码示例
- C++ lrint() and llrint()用法及代码示例
- C++ list back()用法及代码示例
- C++ list merge()用法及代码示例
- C++ ldiv()用法及代码示例
- C++ list remove()用法及代码示例
- C++ list push_back()用法及代码示例
- C++ list::begin()、list::end()用法及代码示例
- C++ list::operator=用法及代码示例
- C++ list erase()用法及代码示例
- C++ list::empty()、list::size()用法及代码示例
- C++ list resize()用法及代码示例
- C++ list pop_front()用法及代码示例
- C++ list empty()用法及代码示例
注:本文由纯净天空筛选整理自 C++ llabs()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。