C 速查手冊
11.1.6 round()
math.h 的函數 (function) round() 回傳參數 (parameter) 的最接近 double 型態的整數值,同時會自動四捨五入,預設回傳值 (return value) 及參數的資料型態 (data type) 為 double ,另有 float 型態的 roundf() , long double 型態的 rounl() 。
round() 的函數原型 (prototype) 如下
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://kaiching.org/
檔名:cround.c
功能:示範 math.h 中函數 round() 的使用
作者:張凱慶 */
編譯後執行,結果如下
$ gcc cround.c |
$ a.out |
8.000000 |
8.000000 |
9.000000 |
9.000000 |
9.000000 |
9.000000 |
$ |