在C++中,可以使用标准库函数round()来进行四舍五入取整操作。该函数的声明在头文件<cmath>中,其用法如下:
round()
<cmath>
#include <cmath> double num = 3.14; int roundedNum = std::round(num);
在上面的例子中,std::round()函数将3.14四舍五入取整为3,并将结果赋给roundedNum变量。
std::round()
3.14
3
roundedNum