Mike Blezien wrote:

> Hi,
>
> So if I use the int() this will provide the same results as this ceil() function
>   does... ??

Nope.  Same as floor().  If you want to round, use:
my $rounded = int ($float_value + 0.5);

Joseph


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to