Computer Science A - 12/8/99 int Winner(const apmatrix& Results) { int bigTotal = NumVotes(Results, 0), bigCandidate = 0, total; for(int lcv = 1; lcv < NumCandidates; lcv++) { total = NumVotes(Results, lcv); if(bigTotal < total) { bigTotal = total; bigCandidate = lcv; } } return bigCandidate; }