orhtej2@eviltoast.org to Programmer Humor@programming.devEnglish · 27 days agoFloating point arithmeticseviltoast.orgimagemessage-square41linkfedilinkarrow-up11arrow-down10
arrow-up11arrow-down1imageFloating point arithmeticseviltoast.orgorhtej2@eviltoast.org to Programmer Humor@programming.devEnglish · 27 days agomessage-square41linkfedilink
minus-squarejjjalljs@ttrpg.networklinkfedilinkarrow-up0·27 days 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')