位置:首頁 > 高級語言 > C語言標準庫 > abs() - C語言庫函數

abs() - C語言庫函數

C庫函數int abs(int x) 返回x的絕對值。

聲明

以下是 abs() 函數的聲明。

int abs(int x)

參數

  • x -- 這是整數值。

返回值

這個函數返回x的絕對值。

例子

下麵的例子演示了如何使用 abs() 函數。

#include <stdio.h>
#include <stdlib.h>

int main ()
{
   int a, b;

   a = abs(5);
   printf("value of a = %d
", a);

   b = abs(-10);
   printf("value of b = %d
", b);
   
   return(0);
}

讓我們編譯和運行上麵的程序,這將產生以下結果:

value of a = 5
value of b = 10