在C語言中,fabs函數(shù)用于計(jì)算浮點(diǎn)數(shù)的絕對(duì)值。它的函數(shù)原型如下:
double fabs(double x);
fabs函數(shù)接受一個(gè)參數(shù)x,返回參數(shù)x的絕對(duì)值,即|x|。
下面是一個(gè)使用fabs函數(shù)的例子:
#include <stdio.h>
#include <math.h>
int main() {
double x = -3.14;
double result = fabs(x);
printf("The absolute value of %.2f is %.2f\n", x, result);
return 0;
}
運(yùn)行結(jié)果:
The absolute value of -3.14 is 3.14
在上面的例子中,首先包含了<stdio.h>
和<math.h>
頭文件,分別用于輸入輸出和數(shù)學(xué)函數(shù)。然后定義了一個(gè)變量x,并給其賦值為-3.14。然后使用fabs函數(shù)計(jì)算x的絕對(duì)值,并將結(jié)果賦值給變量result。最后使用printf函數(shù)輸出結(jié)果。