Code Library
Home Submit Free Hosting Link To Us Contacts

CGI Maximum Value of an Array

CGI Maximum Value of an Array CGI CGI Maximum Value of an Array Download (.zip)



sub max {
my($max) = shift;

foreach (@_) {
$max = $_ if $max < $_;
}
$max;
}






CGI Maximum Value of an Array