in reply to Beginner question - understanind a loop with a file handle
# Read each line of file supposing a number per line # while <FILE> { # # the += operator will add each number read to #the accumulated # $total += $_; # # $_ contains the line just read of FILE # ++ will increment 1 for each line giving a total # count of lines at the end of the loop # $count++; } # # at the end of the loop you have total = sum of lines # and count how many lines where read # my $average = $total/$count; # # the formula above calculates the average
Now Can you see the code? Any line that starts with # is a comment.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Beginner question - understanind a loop with a file handle
by GrandFather (Saint) on Oct 16, 2010 at 06:52 UTC |