So, I wanted to understand the printf command and how to manipulate the formatting of a number (yes I am that new to this), namely how to insert a variable into %.f it would seem %.{$var}f does the trick.

And In this small script I thought I had it worked out

If I enter 1.111111111111111111111111111111 (1 with 30 1s after the decimal point) as an experimental value, when asked 'How many digits would you like after the decimal point ? ' if I answer 2 I get 1.11 as expected.

If I answer 10 I get 1.1111111111 as I would expect.

However if I answer 20 I get 1.11111111111111116045 (?)

And if I answer 30 I get 1.111111111111111160454356650007 (?)

Can someone tell me why please.

#! /usr/bin/perl -w # experiment with printf use strict; my $num = 0; my $dig = 0; print 'Input a number :'; chomp( $num = <STDIN> ); print 'How many digits would you like after the decimal point ? '; chomp( $dig = <STDIN> ); print "\n"; print 'Original number was '; print "$num \n"; printf("And to $dig, points is "); printf( "%.${dig}f", $num ); print "\n\n";

In reply to Why do I get random numbers? by Cleggy

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.