Tagged Questions
3
votes
3answers
333 views
What's the best technique for handling US Dollar calculations in Perl?
What's the best technique for handling US Dollar calculations in Perl?
Especially: the following needs to work:
$balance = 10;
$payment = $balance / 3; # Each payment should be 3.33. How best to ...
3
votes
3answers
2k views
In Perl, how can I limit the number of places after the decimal point but have no trailing zeroes?
This question is similar to "dropping trailing ‘.0’ from floats", but for Perl and with a maximum number of digits after the decimal.
I'm looking for a way to convert numbers to string format, ...