For my machine, it will give the wrong answer for any time $yearlyamount equals k * 13, for k at least 9. This is because 52 is 4 * 13, and hence the division by 52 gives the exact answer, and subtracting 0.005 (which cannot be represented exactly in binary) from it causes %f to round it down to the next decimal. For instance, 117 / 52 - 0.005, on my computer with my Perl (5.8.6, with longdoubles and 64bitints) is about 2.244999999999999999895916591441391574335284531116485595703125. Just a tiny, tiny bit below 2.245, but that's enough to give the answer 2.24, instead of 2.25.

Doing arithmetic with reals is very tricky, and it's therefore better to use a good module. POSIX.pm for instance, with its floor method.


In reply to Re^2: Rounding of a number... by Anonymous Monk
in thread Rounding of a number... by mkenney

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.