码迷,mamicode.com
首页 > 其他好文 > 详细

浮点数比较

时间:2014-08-22 16:32:59      阅读:255      评论:0      收藏:0      [点我收藏+]

标签:io   for   ar   amp   line   sp   on   ef   res   

参照MSDN定义:
/* Compile options needed: none. Value of c is printed with a decimal
point precision of 10 and 6 (printf rounded value by default) to
show the difference
*/
#include 
// Define your own tolerance
const double EPSILON = 1.00e-07;
const float   FLT_EPSILON  = 1.192092896e-07F;
const double  DBL_EPSILON  = 2.2204460492503131e-016;

#define FLOAT_EQ(x,v) (((v - EPSILON) < x) && (x <( v + EPSILON)))

int main()
{
float a, b, c;
a = 1.345f;
b = 1.123f;
c = a + b;
// if (FLOAT_EQ(c, 2.468))   // Remove comment for correct result
if (c == 2.468)              // Comment this line for correct result
printf("They are equal.\n");
else
printf("They are not equal! The value of c is %13.10f,or %f",c,c);
}


浮点数比较

标签:io   for   ar   amp   line   sp   on   ef   res   

原文地址:http://my.oschina.net/u/572632/blog/305603

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!