Help for this page

Select Code to Download


  1. or download this
    A * B = 20
    A * C = 40
    ...
    B * C = 50
    :
    :
    
  2. or download this
        for my $x (sort keys %hash) {
            for my $y (sort grep { $_ ne $x } keys %hash) {
                printf "%s * %s = %d\n", $x, $y, $hash{$x} * $hash{$y};
            }
        }