Beware of floor(x+0.5), here is what can happen for odd numbers in range [2^52,2^53]:
-bash-3.2$ cat >test-round.c <<END
#include <math.h>
#include <stdio.h>
int main() {
double x=5000000000000001.0;
double y=round(x);
double z=floor(x+0.5);
printf(" x =%f\n",x);
printf("round(x) =%f\n",y);
printf("floor(x+0.5)=%f\n",z);
return 0;
}
END
-bash-3.2$ gcc test-round.c
-bash-3.2$ ./a.out
x =5000000000000001.000000
round(x) =5000000000000001.000000
floor(x+0.5)=5000000000000002.000000
This is http://bugs.squeak.org/view.php?id=7134
Use a solution like the one of @konik
EDIT: my own robust version would be something like
double round(double x)
{
double truncated,roundedFraction;
double fraction= modf(x, &truncated);
modf(2.0*fraction, &roundedFraction);
return truncated + roundedFraction;
}
EDIT 2: Another reason to avoid floor(x+0.5) is given here
std::cout << std::fixed << std::setprecision(0) << -0.9, for example. – Frank Feb 17 '11 at 18:05roundis available since C++11 in<cmath>. Unfortunately if you are in Microsoft Visual Studio it is still missing: connect.microsoft.com/VisualStudio/feedback/details/775474/… – uvts_cvs Apr 5 at 8:29