Ceil/Floor/Round in Perl - Go4Expert - Go4Expert - Programming and Web Development Community
Ceil in Perl Cieling is basically outputing the next largest integer for an given real number. ceiling(x) is the smallest integer not less than x Ways ... sub Ceil { my $x = shift; my $r = shift; my $Len = &decLen($x); my $rLen = &decLen($r); $Len = $rLen...