This is a simple add operation between two float:
float a = 3.9F;
float b = 2.95F;
Log.i("Operation","sum: "+String.valueOf(a+b));
This return me the following output:
11-26 15:02:15.680: I/Operation(18403): sum: 6.8500004
How can I obtain the correct value(6.85) ?