📌  相关文章
📜  2018 ap 计算机科学免费回答回答 wordpair - 任何代码示例

📅  最后修改于: 2022-03-11 14:55:27.740000             🧑  作者: Mango

代码示例2
public int numMatches()
{
  int matches = 0;

  for(WordPair wp : allPairs)
    if(wp.getFirst().equals(wp.getSecond()))
      matches++;

  return matches;
}