I would love to read what you mean by "sprintf does not really 'round' from a mathematical point of view". I have observed that sprintf will round up from the number right outside of the requested precision. For example, from my perspective, the following list when rounded to 5 decimal places should end in 70 (i.e. 1.777695 rounds to 1.77770), do note that it *does not* always work that way.
@nums= ( 1.777695, 1.77769501, 1.667695, 1.66769501, 1.557695, 1.55769501, 1.000695, 1.00069500001, 1.000696 ); foreach (@nums) { print sprintf "%7.5f\n", $_; }
Output on Perl 5.6.1: note: it usually rounds if the next significant digit is 5 or greater
1.77770
1.77770
1.66769
1.66770
1.55770
1.55770
1.00069
1.00070
1.00070
Output on Perl 5.8.5: note: it usually rounds if the next significant digit is 5 or greater
1.77770
1.77770
1.66770
1.66770
1.55770
1.55770
1.00069
1.00070
1.00070
Given the example, I would love for you to elaborate on your sprintf opinion.

In reply to Re^2: Negative zero? There's gotta be a sprintf that undoes that, right? by rgiskard
in thread Negative zero? There's gotta be a sprintf that undoes that, right? by rgiskard

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.