C 速查手冊
11.1.1 fabs()
math.h 的函數 (function) fabs() 回傳參數 (parameter) 的絕對值,預設回傳值 (return value) 及參數的資料型態 (data type) 為 double ,另有 float 型態的 fabsf() , long double 型態的 fabsl() 。
fabs() 的函數原型 (prototype) 如下
double fabs(double); |
float fabsf(float); |
long double fabsl(long double); |
以下程式示範函數 fabs() 的使用
#include <stdio.h>
#include <math.h>
int main(void)
{
printf("%f\n", fabs(-2.36));
printf("%f\n", fabs(2.36));
printf("%f\n", fabs(0));
printf("%f\n", fabs(-0));
printf("%f\n", fabs(-(-2.36)));
printf("%f\n", fabs(-(2.36)));
return 0;
}
/* 《程式語言教學誌》的範例程式
http://kaiching.org/
檔名:cfabs.c
功能:示範 math.h 中函數 fabs() 的使用
作者:張凱慶 */
編譯後執行,結果如下
$ gcc cfabs.c |
$ a.out |
2.360000 |
2.360000 |
0.000000 |
0.000000 |
2.360000 |
2.360000 |
$ |