in reply to Re^3: Running Total Array or Hash
in thread Running Total Array or Hash
This code:
does not make much sense to me. Perhaps you want something like this:for my $key (sort keys %client_total) { $client_total = {$key} = $client_total/10; }
Although, if this is what you want, there is no need to sort the keys for the calculation.for my $key (sort keys %client_total) { $client_total{$key} = $client_total{$key}/10; }
This could be done in a more concise (but less explicit) way:
Or even possibly:$_/=10 for values %client_total;
(Although I really prefer the previous solution.) Please also note that you posted this message twice and you got an answer from VincentK (look above), which might be what you are looking for.map {$_/=10} values %client_total;
|
|---|