我想知道是否有一种方法可以解决精度问题,这似乎是由于我的机器内部使用浮点数表示的结果:
为了清楚起见,问题总结为:
// 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的预期结果相差甚远。
任何建议最欢迎。
翻过高山走不出你
心有法竹
蛊毒传说
相关分类