阅读量:1
C语言中,可以使用以下方法实现四舍五入:
- 使用round()函数:round()函数是C语言中的一个数学库函数,可以对浮点数进行四舍五入。它的原型如下:
double round(double x);
例如:
double num = 6.8; double rounded_num = round(num); printf("%f\n", rounded_num); // 输出 7.0
- 使用floor()和ceil()函数:floor()函数可以向下取整,ceil()函数可以向上取整。通过对数值加0.5,再使用floor()或ceil()函数,可以实现四舍五入。
例如:
double num = 6.8; double rounded_num = floor(num + 0.5); printf("%f\n", rounded_num); // 输出 7.0
- 使用类型转换:将浮点数强制转换为整数类型,会自动进行向下取整。然后判断原始浮点数与转换后的整数之间的差值,如果差值大于等于0.5,则向上取整;否则向下取整。
例如:
double num = 6.8; int int_num = (int)num; double diff = num - int_num; double rounded_num; if (diff >= 0.5) { rounded_num = int_num + 1; } else { rounded_num = int_num; } printf("%f\n", rounded_num); // 输出 7.0