my @prices = (0.99) x 300; my $sum = 0; for (@prices) { $sum += $_; } #print $sum; $ausgabe = sprintf("%.2f",$sum); print "$ausgabe"; __END__ 297.00