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