19 lines
205 B
Awk
19 lines
205 B
Awk
|
BEGIN {
|
||
|
sum = 0.0;
|
||
|
}
|
||
|
|
||
|
{
|
||
|
if ($1 != "#") {
|
||
|
sum += $2;
|
||
|
if ($2 > 40.0) {
|
||
|
print "Country ", $1, "has", $2, "mln people";
|
||
|
}
|
||
|
}
|
||
|
|
||
|
print "Nr of columns", NF;
|
||
|
}
|
||
|
|
||
|
END {
|
||
|
print "Total population ", sum;
|
||
|
}
|