import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc=new Scanner(System.in); int n=sc.nextInt(); String []a=new String[n]; for (int i = 0; i <n; i++) { a[i]=sc.next(); } String coms=sc.next(); int count=0; for (int i = 0; i < a.length; i++) { if(a[i].equals(coms)) count++; } System.out.println(count); } }
0.0分
0 人评分
简单的a+b (C语言代码)浏览:594 |
P1002 (C语言代码)浏览:1019 |
C语言程序设计教程(第三版)课后习题5.7 (C语言代码)浏览:669 |
输出正反三角形 (C语言代码)浏览:859 |
校门外的树 (C语言代码)浏览:988 |
C语言程序设计教程(第三版)课后习题5.4 (C语言代码)浏览:701 |
WU-printf基础练习2 (C++代码)浏览:2061 |
C语言程序设计教程(第三版)课后习题6.5 (C语言代码)浏览:616 |
【计算两点间的距离】 (C语言代码)浏览:1522 |
A+B for Input-Output Practice (IV) (C语言代码)浏览:513 |