I am not sure how things changed
please see my output
1348 4887.15 -----> this is the line i copy pasted no operation
Checking amnt before conversion 4887.15,
Checking amnt after rounding 4887.15,
Checking amnt after conversion 488715,
488714 i m checking amount before padding,
0000000000488714 i m checking amount after padding,
why it
print " Checking amnt before conversion $amt,\n";
$amt= sprintf("%.2f",$amt);
print " Checking amnt after rounding $amt,\n";
$amt = $amt*100;
print " Checking amnt after conversion $amt,\n";
sub amnt($amn)
{
my $amount=$_[0];
$amount=int($amount);
say "$amount i m checking amount before padding,\n";
#my $padamnt = sprintf("%016.0f",$amount);---> currently commented to
+check integer effect.
my $padamnt = sprintf("%016d",$amount);
say "$padamnt i m checking amount after padding,\n";
return $padamnt;
}
-
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.
|