http://www.perlmonks.org?node_id=24417


in reply to How do I round a number?

How about
Use integer; $thevalue*=1;
Seems the simplest, IMHO. It rounds everything down, btw - so it acts kinda like 'div' in PASCAL. That's where it's useful. For rounding to the nearest, use any of the above.

Replies are listed 'Best First'.
RE: Answer: How do I round a number?
by Anonymous Monk on Sep 11, 2000 at 04:11 UTC
    I think you mean int?(been a while since I used pascal). Div was the divisor operation. The result being not a rounded down number, but the divisor of the operation. as in: 5 div 2 = 2 meaining 5/2 = 2 remainder 1 . Div returns the 2, Mod returns the 1. Admittedly this is irrelivant to the origonal question, but... :)