Oxygen Basic
Programming => Problems & Solutions => Topic started by: Brian Alvarez on May 07, 2019, 12:34:41 PM
-
It is not a big problem, but this:
print str(5)
outputs this:
4.9999999999999912
You have to do this:
print str(5, 0)
to get this:
5
-
heh
i don't know which version u use
but i get proper result with
print (5) ' res 5
it is not with integers than with numbers
what you get if you type
int a =5
print str(a) ?
-
Probably one too old to even be talking. ;D
Sorry i forgot i havent upgraded. :)
-
can somebody try this in the newest version?
numberformat(0,1,0,0,0,0)
print str(10, 0)
numberformat
In my version every number is formatted correctly, but for some reason, numbers bigger than 9 are scientifically notated, for example 10 is formatted as: 1E+01
-
I see that notation when ScroptBasic integers auto convert to doubles for extended precision.
-
Hi Brian,
In my current version This does not go into scientic notation 1.0E+1
numberformat(0,1,0,0,0,0)
print str(10, 0)
numberformat
but I noticed that numberformat does not work in JIT mode because the setting is in the host's variable space.