C 速查手冊

11.1.2 fmax()

math.h函數 (function) fmax() 回傳兩個參數 (parameter) 中的最大值,預設回傳值 (return value) 及參數的資料型態 (data type) 為 double ,另有 float 型態的 fmaxf()long double 型態的 fmaxl()

fmax() 的函數原型 (prototype) 如下

double fmax(double, double);
float fmaxf(float, float);
long double fmaxl(long double, long double);

以下程式示範函數 fmax() 的使用

#include <stdio.h>
#include <math.h>

int main(void)
{
    printf("%f\n", fmax(33, 22));
    printf("%f\n", fmax(-33, -22));
    printf("%f\n", fmax(33, -22));
    printf("%f\n", fmax(-33, 22));
    printf("%f\n", fmax(33 - 22, 22 - 33));
    printf("%f\n", fmax(33 + 22, 22 + 33));
    
    return 0;
}

/* 《程式語言教學誌》的範例程式
    http://kaiching.org/
    檔名:cmax.c
    功能:示範 math.h 中函數 fmax() 的使用
    作者:張凱慶 */

編譯後執行,結果如下

$ gcc cmax.c
$ a.out
33.000000
-22.000000
33.000000
22.000000
11.000000
55.000000
$

上一頁 11.1.1 fabs()
回 C 速查手冊 - 標準程式庫分類索引
下一頁 11.1.3 fmin()
回 C 速查手冊 - 標準程式庫導覽
回 C 速查手冊首頁
回 C 教材首頁
回程式語言教材首頁