home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / vol_300 / 333_02 / p038a.awk < prev    next >
Text File  |  1989-04-22  |  136b  |  8 lines

  1.  
  2.  
  3. $3 > maxpop    { maxpop = $3; country = $1 }
  4.  
  5. END        { print "\nCountry with the largest population:",     \
  6.             country, maxpop
  7.         }
  8.