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