Do you mean:
perl -e 'print 5.1 + 100005.2 - 100005.2'
5.09999999997672?
Note that this does what you expect:
perl -e 'print 5.1 + ( 100005.2 -100005.2 )' [12:36pm]
5.1
To summarize,
the bible , most rational numbers are not representable exactly by binary numbers. When the larger constant 100005.2 is added to the smaller constant 5.1 the representational errors in the larger constant can swamp out the smaller constant.
Re-arranging terms as I did in the second example can help. A more universal method is to insure that all constants have exact representations base 2. i.e.
%perl -e ' printf "%f %f \n", 0x186A5, ( 5.1 + 0x186A5 ) - 0x186A5'
100005.000000 5.100000
s//----->\t/;$~="JAPH";s//\r<$~~/;{s|~$~-|-~$~|||s
|-$~~|$~~-|||s,<$~~,<~$~,,s,~$~>,$~~>,,
$|=1,select$,,$,,$,,1e-1;print;redo}
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: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.