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()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。