首頁  >  文章  >  後端開發  >  在C/C++中,abs()、labs()和llabs()函數的翻譯如下: abs()函數用來傳回一個整數的絕對值。 labs()函數用來傳回一個長整數的絕對值。 llabs()函數用來傳回一個長長整數的絕對值

在C/C++中,abs()、labs()和llabs()函數的翻譯如下: abs()函數用來傳回一個整數的絕對值。 labs()函數用來傳回一個長整數的絕對值。 llabs()函數用來傳回一個長長整數的絕對值

WBOY
WBOY轉載
2023-08-26 13:49:02975瀏覽

在C/C++中,abs()、labs()和llabs()函数的翻译如下:

abs()函数用于返回一个整数的绝对值。
labs()函数用于返回一个长整数的绝对值。
llabs()函数用于返回一个长长整数的绝对值

在C 的cstdlib函式庫中,除了abs之外,還有不同的取得絕對值的函數。在 C 中,abs 基本上用於 int 型別輸入,在 C 中,用於 int、long、long long。其他的用於long、long long類型資料等。讓我們看看這些函數的用法。

abs()函數

此函數用於int型別資料。所以這會傳回給定參數的絕對值。語法如下。

int abs(int argument)

範例

#include <cstdlib>
#include <iomanip>
#include <iostream>
using namespace std;
main() {
   int x = -145;
   int y = 145;
   cout << "Absolute value of " << x << " is: " << abs(x) << endl;
   cout << "Absolute value of " << y << " is: " << abs(y) << endl;
}

輸出

Absolute value of -145 is: 145
Absolute value of 145 is: 145

labs() 函數

該函數用於長類型資料。所以這會傳回給定參數的絕對值。語法如下。

long labs(long argument)

範例

#include <cstdlib>
#include <iomanip>
#include <iostream>
using namespace std;
main() {
   long x = -9256847L;
   long y = 9256847L;
   cout << "Absolute value of " << x << " is: " << labs(x) << endl;
   cout << "Absolute value of " << y << " is: " << labs(y) << endl;
}

輸出

Absolute value of -9256847 is: 9256847
Absolute value of 9256847 is: 9256847

llabs()函數

該函數用於long long類型資料。所以這會傳回給定參數的絕對值。語法如下。

long long labs(long long argument)

範例

#include <cstdlib>
#include <iomanip>
#include <iostream>
using namespace std;
main() {
   long long x = -99887654321LL;
   long long y = 99887654321LL;
   cout << "Absolute value of " << x << " is: " << llabs(x) << endl;
   cout << "Absolute value of " << y << " is: " << llabs(y) << endl;
}

輸出

Absolute value of -99887654321 is: 99887654321
Absolute value of 99887654321 is: 99887654321

以上是在C/C++中,abs()、labs()和llabs()函數的翻譯如下: abs()函數用來傳回一個整數的絕對值。 labs()函數用來傳回一個長整數的絕對值。 llabs()函數用來傳回一個長長整數的絕對值的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:tutorialspoint.com。如有侵權,請聯絡admin@php.cn刪除