在C語言中,可以使用round()
函數來實現小數部分的四舍五入。該函數的原型如下:
double round(double x);
float roundf(float x);
long double roundl(long double x);
這些函數將參數x
四舍五入為最接近的整數。如果有兩個整數與x
的小數部分一樣接近,則返回偶數。下面是一個示例代碼:
#include <stdio.h>
#include <math.h>
int main() {
double num = 3.14159;
double rounded = round(num);
printf("原始數值:%f\n", num);
printf("四舍五入后的數值:%f\n", rounded);
return 0;
}
輸出結果為:
原始數值:3.141590
四舍五入后的數值:3.000000
注意:round()
函數返回的結果為double
類型,如果需要結果為整數類型,可以使用int
或long
進行強制類型轉換。