round off decimal numbers to nearest integer in c++ code example
Example 1: c++ round to int
#include <iostream>
#include <cmath>
using namespace std;
int main()
{
int x = 15;
double result;
result = round(x);
cout << "round(" << x << ") = " << result << endl;
return 0;
}
Example 2: nearest integer rounding in c++
cout << "Nearest value of x :" << round(x) << "\n";