Contributed by vroom
on Jan 08, 2000 at 08:23 UTC
Q&A
> data formatting
Answer: How do I print/round a number to a given number of decimal places? contributed by vroom
Probably the easiest way is to use printf/sprintf:
$unrounded = 0.66666;
printf "$unrounded rounded to 3 decimal places is %.3f\n", $unrounded;
$rounded = sprintf "%.2f", $a; # rounded to 2 decimal places (0.67)
| Answer: How do I print/round a number to a given number of decimal places? contributed by hossman
As in How do I round a number? — Math::Round has a great method for this:
use Math::Round;
print nearest(.01, 1.555);
| Answer: How do I print/round a number to a given number of decimal places? contributed by Roy Johnson
This other answer, by wrvhage, has the great property of working correctly for values like 3.005 rounded to two places (where sprintf is not). However, it needs a couple of tweaks to work for negative numbers.
sub stround
{
my( $n, $places ) = @_;
my $sign = ($n < 0) ? '-' : '';
my $abs = abs $n;
$sign . substr( $abs + ( '0.' . '0' x $places . '5' ), 0, $places
++ length(int($abs)) + 1 );
}
| Answer: How do I print/round a number to a given number of decimal places? contributed by wrvhage
sub stround
{
my( $number, $decimals ) = @_;
substr( $number + ( '0.' . '0' x $decimals . '5' ), 0, $decimals +
+ length(int($number)) + 1 );
}
TIMTOWTDI!
|
Please (register and) log in if you wish to add an answer
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
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, 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, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
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.
|
|