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

fabs() - C函數

C庫函數double fabs(double x) 返回x的絕對值。

聲明

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

double fabs(double x)

參數

  • x -- 這是浮點值。

返回值

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

例子

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

#include <stdio.h>
#include <math.h>

int main ()
{
   int a, b;
   a = 1234;
   b = -344;
  
   printf("The absolute value of %d is %lf
", a, fabs(a));
   printf("The absolute value of %d is %lf
", b, fabs(b));
   
   return(0);
}

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

The absolute value of 1234 is 1234.000000
The absolute value of -344 is 344.000000