Floats bug, or feature?
Posted: Wed Oct 18, 2006 11:46 pm
Just messing about with PB but I've noticed this:
Why is 1.5 being rounded to 1 in the first case, but 2 in the second?
Code: Select all
a.l=b.f*c.l+1.5+9
Debug a ;debugs 10
a.l=b.f*c.l+1.5+90
Debug a ;debugs 92