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月 */
編譯後執行,結果如下
您可以繼續參考
數學 math.h
- double fabs(double);
- double fmax(double, double);
- double fmin(double, double);
- double remainder(double, double);
- double fma(double, double, double);
- double round(double);
- double sqrt(double);
- double cbrt(double);
- double pow(double, double);
- double hypot(double, double);
- double sin(double);
- double cos(double);
- double tan(double);
- double log(double);
- double log2(double);
- double log10(double);
2 則留言:
請問ㄧ下:
第一段的 long double 型態的 rounl()-->是否應該改成roundl()
的確漏打 l ,感謝指正 :)
張貼留言