Help for this page

Select Code to Download


  1. or download this
    %scores = (
       "wibble<=90" => "A",
       ...
    );
    
  2. or download this
    $grade = <STDIN>;
    ...
    foreach $grade (%scores) {
    
  3. or download this
    foreach my $key (keys %hash) {
        ...
    }
    
  4. or download this
    foreach my $value (values %hash) {
        ...
    }
    
  5. or download this
    chomp (my $grade = <STDIN>);
    $grade !~ /^\d+$/ and die "Input must be numeric!\n";
    ...
        }
    }
    print $result,$/;
    
  6. or download this
    chomp (my $grade = <STDIN>);
    $grade !~ /^\d+$/ and die "Input must be numeric!\n";
    ...
        }
    }
    print $result, $/;