Beefy Boxes and Bandwidth Generously Provided by pair Networks
Come for the quick hacks, stay for the epiphanies.
 
PerlMonks  

Re: Re: Re: Re: Zero Padding to the Right of the Decimal

by Not_a_Number (Prior)
on Jan 15, 2004 at 20:59 UTC ( [id://321669]=note: print w/replies, xml ) Need Help??


in reply to Re: Re: Re: Zero Padding to the Right of the Decimal
in thread Zero Padding to the Right of the Decimal

    printf( "%3.2f\n" , ($i + 0.01)  );

doesn't work.

Change to:

    printf( "%3.2f\n" , ($i += 0.01)  );

dave

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others making s'mores by the fire in the courtyard of the Monastery: (1)
As of 2024-04-25 04:10 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found