home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / TEXT / UTILITY / AWK320.ZIP / ASIA.AWK < prev    next >
Encoding:
Text File  |  1990-02-08  |  245 b   |  8 lines

  1. # compute the total population and number of Asian countries
  2. # AKW p38
  3.  
  4. $4 == "Asia" { pop = pop + $3; n = n + 1 }
  5. END          { print "Total population of the", n,
  6.                    "Asian countries is", pop, "million."
  7.              }
  8.