在C++中,round函數用于將一個浮點數四舍五入為最接近的整數。它的用法如下:
#include <cmath>
double round(double x); // 返回一個最接近x的整數
float roundf(float x); // 返回一個最接近x的整數
long double roundl(long double x); // 返回一個最接近x的整數
例如:
#include <iostream>
#include <cmath>
int main() {
double num = 4.6;
double roundedNum = round(num);
std::cout << "Rounded Number: " << roundedNum << std::endl;
return 0;
}
輸出結果為:
Rounded Number: 5
在這個例子中,round函數將4.6四舍五入為最接近的整數5。