我想编写一个函数来使用银行家的舍入方法将双精度数舍入为整数(舍入一半到偶数:http ://en.wikipedia.org/wiki/Rounding#Round_half_to_even ),例如:
int RoundToInt(double x);
我怎样才能做到这一点?
更新:
我能得到的最好的是:
int RoundToInt(double x)
{
int s = (int)x;
double t = fabs(x - s);
if ((t < 0.5) || (t == 0.5 && s % 2 == 0))
{
return s;
}
else
{
if (x < 0)
{
return s - 1;
}
else
{
return s + 1;
}
}
}
但这很慢,我什至不确定它是否准确。
有没有一些快速准确的方法来做到这一点。