Help for this page

Select Code to Download


  1. or download this
    foreach my $x ( 10..99 ) {
       foreach my $y ( 10..999 ) {
    ...
           $fr[ $_ ][ $result[$_] ]++ foreach (0..$#result);
       }
    }
    
  2. or download this
    my @fr;
    $fr[$_] = [ (0)x10 ] foreach (0..$maxdigits);