qse/ase/cmd/awk/emp-019.out
2008-03-21 03:49:53 +00:00

13 lines
177 B
Plaintext

{
pay = (pay + ($2 * $3));
}
END {
print NR,"employees";
print "total pay is",pay;
print "average pay is",(pay / NR);
}
6 employees
total pay is 337.5
average pay is 56.25