Actually, that's not the way to deal with it: you want to get your data values converted into cents (and error correct at this point) very early, and then work in cents (or tenths of cents) throughout, rather than holding them in dollars and multiplying by 100 at odd moments to do comparisons.

The reason this is a problem is that, as with the fraction 1/3 in decimal, 1/10, or 1/100 does not have a finite representation in binary. So the end of the value gets chopped off. Then, when it's multiplied back up, that chopped piece is not reinstated. (Exactly the same way that 1/3 * 3 on a calculator can give you the answer 0.99999)

So if you've got two amounts which differ by very small fractions of a cent, and multiply them both by 100, you multiply the error by 100. That might be enough to make int return different answers.

sub dollars_to_cents { map { int ($_*100+0.5) } @_; } $dollars=<STDIN> $cents=dollars_to_cents($dollars)
would be better way of dealing with the conversion.

Change the multiplier in the function, if you wish more accuracy (so 1000 if you wish to deal in tenths of a cent). The addition of 0.5 brings the answer to the closest cent, to allow for the possible rounding error. It doesn't need changing


In reply to Re: Re: strange arithmetic results by tommyw
in thread strange arithmetic results by dash2

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.