Help for this page

Select Code to Download


  1. or download this
    foreach $key (sort keys %tt) {
           printf "%35s %15d\n",$key, $tt{$key};
    }
    
  2. or download this
    while (($key, $value) = each %tt) {
           push @unsorted, [ $k, $v ];
    ...
    foreach (@sort_dsc) {
         prinf "%35s %15d\n", $_->[0], $_->[1];
    }