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

10 lines
192 B
Plaintext

($4 == "Asia") {
pop = (pop + $3);
n = (n + 1);
}
END {
print "Total population of the",n,"Asian countries is",pop,"million.";
}
Total population of the 4 Asian countries is 2173 million.