Hello maciej, and welcome to the Monastery!
Expanding on the advice from Anonymous Monk, here is one way to implement the solution:
#! perl
use warnings;
use strict;
my %hash = (1 => 8, 2 => 6, 3 => 3, 4 => 7);
my $highest_value;
my $highest_key;
while (my ($key, $value) = each %hash)
{
print "$key key has value $value\n";
if (!defined $highest_value || $highest_value < $value)
{
$highest_key = $key;
$highest_value = $value;
}
}
print "The element with key $highest_key " .
"has the highest value $highest_value\n" if defined $highest_key
+;
Output:
12:36 >perl 591_SoPW.pl
4 key has value 7
1 key has value 8
3 key has value 3
2 key has value 6
The element with key 1 has the highest value 8
12:38 >
Note that this uses < to compare values numerically. To compare the values as strings, you would need to use lt instead:
if (!defined $highest_value || $highest_value lt $value)
Hope that helps,
Update: ++Anonymous Monk for the syntax below: it’s both simpler and more efficient. Confession: I had to re-read the documentation for each to verify that it Does the Right Thing here (it does). :-)
-
Are you posting in the right place? Check out Where do I post X? to know for sure.
-
Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
<code> <a> <b> <big>
<blockquote> <br /> <dd>
<dl> <dt> <em> <font>
<h1> <h2> <h3> <h4>
<h5> <h6> <hr /> <i>
<li> <nbsp> <ol> <p>
<small> <strike> <strong>
<sub> <sup> <table>
<td> <th> <tr> <tt>
<u> <ul>
-
Snippets of code should be wrapped in
<code> tags not
<pre> tags. In fact, <pre>
tags should generally be avoided. If they must
be used, extreme care should be
taken to ensure that their contents do not
have long lines (<70 chars), in order to prevent
horizontal scrolling (and possible janitor
intervention).
-
Want more info? How to link or
or How to display code and escape characters
are good places to start.