Beefy Boxes and Bandwidth Generously Provided by pair Networks
There's more than one way to do things
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??

If someone should be blamed for this, it is not Perl, but c, and Perl just inherits it. If you are using languages support fixed decimal, for example COBOL or PL/SQL, then this problem disappears.

Here is an example what can happen to c: (It does not give 14720)

#include <stdio.h> void main() { float x = 147.2; printf("%20.20f", x * 100); }

If you really care the accuracy and precision, try Math::BigFloat.

Now here is something a little bit off topic, but interesting. If you do this in c:

float x = 147.2; printf("%d", x * 100);

It produces -167772160, which is ridiculous, as c tries to interprete that piece of memory as integer, as you required.

Good you are using Perl. In Perl, if you do the same thing with:

$x = 147.2; printf("%d", $x * 100);

It produces 14719 (not precise, but better than c), as internally Perl does:

float x = 147.2; printf("%d", (int)(x * 100));

In reply to Re: (s)printf and rounding woes by pg
in thread (s)printf and rounding woes by Not_a_Number

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



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chilling in the Monastery: (3)
As of 2024-04-26 08:17 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found