use sprintf to round

main
Yanick Champoux 2023-08-26 12:19:43 -04:00
parent 07da0d91a5
commit 1200d98323
1 changed files with 1 additions and 3 deletions

View File

@ -72,9 +72,7 @@ sub generate_output_table ($ts) {
# create hash with each computer and its average GHz Days per day
my %ranks = pairmap {
my $mean = sum( @$b ) / @$b;
my $rounded = int( $mean + 0.5 );
$a => $rounded;
$a => sprintf "%.0f", sum(@$b)/@$b;
} %$list;
# sort hash by the average and print to screen