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