zoj 3207 80ers' Memory(水~)

 80后的记忆??呵呵。。。

 

给出一些关键词,然后给几个人的几个词,看有几项符合~灰常水~~~~~

 

还差1道AC100~~~~~~~~~加油!

 

#include <stdio.h> #include <stdlib.h> #include <string.h> int main(void) { char key[101][22]; int count,num,i; int N,K; char str[22]; scanf("%d",&N); for(i=0; i<N; i++) scanf("%s",key[i]); scanf("%d",&K); while(K--) { count = 0; scanf("%d",&num); while(num--) { scanf("%s",str); for(i=0; i<N; i++) if( strcmp(str,key[i]) == 0) count++; } printf("%d/n",count); } system("pause"); return 0; }

你可能感兴趣的:(System)