> "Alloun, Jonathan" wrote:
> 
> Hello,
> 
> Is there a function out there that will enable me to round up a number????
> 
> i.e. 0.93495959 would become 1

use strict;
use POSIX;
for (0.93495959, 1.91, 2.01) {
        print ceil ($_), "\n";
}
__END__

-- 
  ,-/-  __      _  _         $Bill Luebkert   ICQ=14439852
 (_/   /  )    // //       DBE Collectibles   http://www.todbe.com/
  / ) /--<  o // //      Mailto:[EMAIL PROTECTED] http://dbecoll.webjump.com/
-/-' /___/_<_</_</_    http://www.freeyellow.com/members/dbecoll/
_______________________________________________
Perl-Win32-Users mailing list
[EMAIL PROTECTED]
http://listserv.ActiveState.com/mailman/listinfo/perl-win32-users

Reply via email to