Desc :

 

 


Source Code :

#include <iostream>

using namespace std;

int main()
{
	cout << "round(1.1) : " << round(1.1) << endl;
	cout << "round(40.5) : " << round(40.5) << endl;
	cout << "round(-27.3) : " << round(-27.3) << endl;
	cout << "round(-55.7) : " << round(-55.7) << endl;
}

 


Result :

+ Recent posts