在C++中,可以使用以下方法來實現四舍五入函數:
#include <iostream>
#include <cmath>
double round(double num) {
return floor(num + 0.5);
}
int main() {
double num = 3.14159;
double rounded_num = round(num);
std::cout << "Original number: " << num << std::endl;
std::cout << "Rounded number: " << rounded_num << std::endl;
return 0;
}
在上面的示例中,我們定義了一個名為round
的函數來實現四舍五入。在main
函數中,我們調用這個函數并輸出結果。您可以將要四舍五入的數字作為參數傳遞給round
函數,并將結果存儲在另一個變量中進行后續操作。