orhtej2@eviltoast.org to Programmer Humor@programming.devEnglish · 1 day agoFloating point arithmeticseviltoast.orgimagemessage-square44linkfedilinkarrow-up1740arrow-down15
arrow-up1735arrow-down1imageFloating point arithmeticseviltoast.orgorhtej2@eviltoast.org to Programmer Humor@programming.devEnglish · 1 day agomessage-square44linkfedilink
minus-squarejjjalljs@ttrpg.networklinkfedilinkarrow-up10·1 day agoUse a dedicated data type or library. Some languages also have something like python’s Decimal type >>> .1 + .2 0.30000000000000004 >>> Decimal(".1") + Decimal(".2") Decimal('0.3')
Use a dedicated data type or library. Some languages also have something like python’s Decimal type
>>> .1 + .2 0.30000000000000004 >>> Decimal(".1") + Decimal(".2") Decimal('0.3')