[Corrected, 2009-10-26]
Essentially, for N significant fractional digits:
• Multiply the number by 10N+1N
• Add 50.5
• Truncate the fraction digits (i.e., truncate the result into an integer)
• Divide by 10N+1N
For N significant integral (non-fractional) digits:
• Divide the number by 10N
• Add 0.5
• Truncate the fraction digits (i.e., truncate the result into an integer)
• Multiply by 10N
You can do this on any calculator, for example, that has an "INT" (integer truncation) operator.
