C 速查手冊
11.1.5 fma()
math.h 的函數 (function) fma() 有三個參數 (parameter) ,回傳前兩個參數 (parameter) 相乘,再加上第三個參數值,預設回傳值 (return value) 及參數的資料型態 (data type) 為 double ,另有 float 型態的 fmaf() , long double 型態的 fmal() 。
fma() 的函數原型 (prototype) 如下
fma(double, double, double); |
float fmaf(float, float, float); |
long double fmal(long double, long double, long double) |
以下程式示範函數 fma() 的使用
#include <stdio.h>
#include <math.h>
int main(void)
{
printf("%f\n", fma(2, 3, 4));
printf("%f\n", fma(-2, -3, -4));
printf("%f\n", fma(2, -3, 4));
printf("%f\n", fma(2, -3, -4));
printf("%f\n", fma(-2, 3, 4));
printf("%f\n", fma(-2, -3, 4));
return 0;
}
/* 《程式語言教學誌》的範例程式
http://kaiching.org/
檔名:cfma.c
功能:示範 math.h 中函數 fma() 的使用
作者:張凱慶 */
編譯後執行,結果如下
$ gcc cfma.c |
$ a.out |
10.000000 |
2.000000 |
-2.000000 |
-10.000000 |
-2.000000 |
10.000000 |
$ |