Perl does an internal magic error correction/guessing when printing a number like
195.999999...etc to compensate rounding errors on the last digits. (This of course in binary and not decimal representation)
I think that's why it prints $x1 as 196.
I'll check as soon my laptop is up and running.
update
as I thought, it's compensating the rounding error from not being able to accurately represent 0.15 in a based 2 floating number:
DB<28> $x1 = (1.15*170)+0.50;
DB<29> printf("%.20f",$x1)
195.99999999999997000000
DB<30> printf("%.20f",0.15)
0.14999999999999999000
DB<31>
There is an easy workaround , avoid the decimal point when calculating and divide at the very end.
DB<35> $x1 = (115*170)+50; # no fractions
DB<36> $x1 /=100
DB<37> p "$x1 = ",int $x1
196 = 196
DB<38>
see also Humans have too many fingers
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.