Help for this page

Select Code to Download


  1. or download this
    $number_to_compare=..........;
    $max_numb=$number_to_compare;
    for($i=1; $i<=100; $i++)
    
  2. or download this
    use List::Util qw(max);
    my @nums;
    ...
        push @nums, $number_to_compare;
    }
    my $max_numb = max(@nums);