-
c++中round函数的用法
-
在C++中,round函数用于将一个浮点数四舍五入为最接近的整数。它的用法如下:
#include <cmath> double round(double x); float round(float x); long double round(long double x);
这个函数接受一个浮点数作为参数,并返回最接近的整数。如果参数x的小数部分大于等于0.5,则返回大于x的最小整数;否则返回小于x的最大整数。
以下是一个示例:
-
#include <iostream> #include <cmath> int main() { double x = 3.6; double rounded = round(x); std::cout << "Rounded value: " << rounded << std::endl; return 0; }
输出结果为:
Rounded value: 4
c++中round函数的用法
最新推荐文章于 2024-05-28 09:37:13 发布