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