C庫函數(shù)double fabs(double x) 返回x的絕對值。
以下是聲明的fabs()函數(shù)。
double fabs(double x)
x -- 這是浮點值。
這個函數(shù)返回x的絕對值。
下面的例子演示了如何使用的 fabs()函數(shù)。
#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); }
讓我們編譯和運行上面的程序,這將產(chǎn)生以下結果:
The absolute value of 1234 is 1234.000000 The absolute value of -344 is 344.000000