我想知道是否有办法克服似乎是我的机器内部浮点数表示的结果的准确性问题:
为了清楚起见,将问题总结为:
// str is "4.600"; atof( str ) is 4.5999999999999996
double mw = atof( str )
// The variables used in the columns calculation below are:
//
// mw = 4.5999999999999996
// p = 0.2
// g = 0.2
// h = 1 (integer)
int columns = (int) ( ( mw - ( h * 11 * p ) ) / ( ( h * 11 * p ) + g ) ) + 1;
在转换为整数类型之前,列计算的结果是 1.9999999999999996;距离 2.0 的预期结果如此接近但如此遥远。
欢迎提出任何建议。