【C】round 函數實現方法。

#include <math.h> static double round(double r) { return (r > 0.0) ? floor(r + 0.5) : ceil(r - 0.5); } 包含頭文件,而後定義函數。。函數
相關文章
相關標籤/搜索