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

math.h 的函數 round() 回傳參數的最接近 double 型態的整數值,同時會自動四捨五入,預設回傳值及參數的資料型態為 double ,另有 float 型態的 roundf() , long double 型態的 roundl() 。



round() 的函數原型如下
double round(double);
float roundf(float);
long double roundl(long double);


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

int main(void)
{
    printf("%f\n", round(8.2));
    printf("%f\n", round(8.49));
    printf("%f\n", round(8.5));
    printf("%f\n", round(8.52));
    printf("%f\n", round(8.6));
    printf("%f\n", round(8.8));
    
    return 0;
}

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


編譯後執行,結果如下



您可以繼續參考


2 則留言:

勝文 提到...

請問ㄧ下:
第一段的 long double 型態的 rounl()-->是否應該改成roundl()

Kaiching Chang 提到...

的確漏打 l ,感謝指正 :)