In Java the floating point arithmetic is not represented precisely. For example following snippet of code
float a = 1.2;
float b= 3.0;
float c = a * b;
if(c == 3.6){
System.out.println("c is 3.6");
} else {
System.out.println("c is not 3.6");
}
actually prints "c is not 3.6".
I'm not interested in precision beyond 3 decimals (#.###). How can I deal with this problem to multiply floats and compare them reliably?
Thanks much
float a = 1.2f;and doubles likedouble d = 1.2d;Also in your if-statement:if(c == 3.6f)– Martijn Courteaux May 24 '10 at 10:39Math.ulp()function. – aeracode Mar 25 '12 at 10:32