round函数 c语言
时间: 2023-10-26 16:01:08 浏览: 272
C语言实现猜拳游戏
5星 · 资源好评率100%
在C语言中,可以使用`round()`函数对一个浮点数进行四舍五入。这个函数定义在`math.h`头文件中。`round()`函数的原型如下:
```c
double round(double x);
```
其中,`x`是要进行四舍五入的浮点数。该函数返回最接近`x`的整数值,如果有两个整数与`x`的距离相等,则返回偶数。
以下是一个示例代码,演示如何使用`round()`函数:
```c
#include <stdio.h>
#include <math.h>
int main() {
double num = 3.6;
double roundedNum = round(num);
printf("原始数字: %.2f\n", num);
printf("四舍五入后的数字: %.2f\n", roundedNum);
return 0;
}
```
输出结果为:
```
原始数字: 3.60
四舍五入后的数字: 4.00
```
这个例子中,`num`的值为3.6,使用`round()`函数对其进行四舍五入后,得到的值为4.0。
阅读全文