在C++中,可以使用標準庫中的round()
函數來進行四舍五入取整操作。round()
函數的功能是將浮點數四舍五入到最接近的整數值,并返回該整數值。
以下是round()
函數的使用示例:
#include <iostream>
#include <cmath>
int main() {
double num = 3.7;
int roundedNum = round(num);
std::cout << "Rounded number: " << roundedNum << std::endl;
return 0;
}
在上面的示例中,我們將浮點數3.7
四舍五入取整,并輸出結果4
。