CODE
LIBARY.COM
Home
/
CGI
CGI Maximum Value of an Array
Maximum Value of an Array
sub
max
{
my
($max) =
shift
;
foreach
(@_) { $max = $_
if
$max < $_; } $max; }
sub max { my($max) = shift; foreach (@_) { $max = $_ if $max < $_; } $max; }
Copy to Clipboard
Related Snippets
CGI Find the Median Value of an Array
CGI Display File Contents
CGI File copy
CGI Find the Mean Value of an Array
CGI Aggemam Text Counter
CGI Simple User Counter
CGI Day Month Calendar
CGI Email Subscribe
CGI Random Image Loader
CGI Populating a hash from an two arrays