日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

C ++中带有示例的llabs()函数

發布時間:2025/3/11 编程问答 40 豆豆
生活随笔 收集整理的這篇文章主要介紹了 C ++中带有示例的llabs()函数 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

C ++ llabs()函數 (C++ llabs() function)

llabs() function is a library function of cstdlib header. It used to get the absolute of the given value. This function is similar to the abs() and labs() functions except for the type of the parameter, it is used for the long long integer values. It accepts a parameter and returns the absolute value.

llabs()函數是cstdlib標頭的庫函數。 它用來獲取給定值的絕對值。 除了參數的類型外,此函數與abs()和labs()函數類似,它用于long long整數值。 它接受一個參數并返回絕對值。

Syntax of llabs() function:

llabs()函數的語法:

C++11:

C ++ 11:

long long int llabs (long long int n);

Parameter(s):

參數:

  • n – represents the value whose absolute value to found.

    n –表示要找到其絕對值的值。

Return value:

返回值:

The return type of this function is long long int, it returns the absolute value.

該函數的返回類型為long long int ,它返回絕對值。

Example:

例:

Input:n = -1234567890987654321Function call:llabs(n);Output:1234567890987654321Input:n = 1234567890987654321Function call:llabs(n);Output:1234567890987654321

C ++代碼演示llabs()函數的示例 (C++ code to demonstrate the example of llabs() function)

// 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; }

Output

輸出量

llabs(-1234567890987654321): 1234567890987654321 llabs(1234567890987654321): 1234567890987654321 llabs(-1111222233334444555): 1111222233334444555 llabs(1111222233334444555): 1111222233334444555

Reference: C++ llabs() function

參考: C ++ llabs()函數

翻譯自: https://www.includehelp.com/cpp-tutorial/llabs-function-with-example.aspx

總結

以上是生活随笔為你收集整理的C ++中带有示例的llabs()函数的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。