C 語言標準函數庫分類導覽 - math.h fmin()

math.h 的函數 fmin() 回傳兩個參數中的最小值,預設回傳值及參數的資料型態為 double ,另有 float 型態的 fminf() , long double 型態的 fminl() 。



fmin() 的函數原型如下
double fmin(double, double);
float fminf(float, float);
long double fminl(long double, long double);


以下程式示範函數 fmin() 的使用
#include <stdio.h>
#include <math.h>

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

/* 《程式語言教學誌》的範例程式
    http://pydoing.blogspot.com/
    檔名:cfmin.c
    功能:示範 math.h 中函數 fmin() 的使用
    作者:張凱慶
    時間:西元2010年6月 */


編譯後執行,結果如下



您可以繼續參考


沒有留言: