Help for this page

Select Code to Download


  1. or download this
    my $max=$array[0];
    foreach (@array) {
     $max=$_ if ($_>$max)
    }