Beefy Boxes and Bandwidth Generously Provided by pair Networks
go ahead... be a heretic
 
PerlMonks  

Re: Help with decimals

by HyperZonk (Friar)
on Jul 29, 2001 at 23:33 UTC ( [id://100716]=note: print w/replies, xml ) Need Help??


in reply to Help with decimals

The printf statement doesn't change the value it's printing, just the format. Thus, formatting 1500 with 2 decimal places should do exactly what you described it doing: printing 1500.00.

I do not really understand what you mean by avoiding "doing math" ... why do you not want to use math (as far as I know, you pretty much have to do math to meaningfully and reliably generate the output you desire). Perhaps you mean that you do not want to alter the value of $foo to generate the output, and also do not want to generate a new variable just for output formatting. If so, that is simple enough:
$foo = 1500; printf ("%.2f", $foo/100);
This generates the desired output without affecting the value of $foo and without using another variable. Yes, you have still multiplied by 0.01, but that value is only used for the printf output and then vanishes.

-HZ

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://100716]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others meditating upon the Monastery: (7)
As of 2024-04-19 08:07 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found