inaccurate division
Posted: Fri Jun 08, 2007 8:20 pm
Code: Select all
a.f = 1.00 / 2.00
PrintN(Str(a))
How can I make it calculate correctly?
Thanks!
http://www.purebasic.com
https://www.purebasic.fr/english/
Code: Select all
a.f = 1.00 / 2.00
PrintN(Str(a))
Code: Select all
a.f = 1.00 / 2.00
Debug StrF(a)