unplugged-vendor/external/one-true-awk/testdir/t.avg

6 lines
80 B
Plaintext
Raw Permalink Normal View History

{s = s + $1; c = c + 1}
END {
print "sum=", s, " count=", c
print "avg=", s/c
}