本文主要是介绍zoj 3492 Kagome Kagome,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
zoj 3492 Kagome Kagome 题目链接:http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemCode=3492
字符查找
题目大意:日本小孩玩的一个类似丢手绢的游戏。background knowledge dosen't help。
#include<stdio.h>
#include<string.h>
int main()
{int t,n,i,j;char c[100][30],m[30];scanf("%d",&t);while(t--){scanf("%d%s",&n,m);for(i=0;i<n;i++){scanf("%s",c[i]);}for(i=0;i<n;i++){if(strcmp(c[i],m)==0)break;}j=(i+n/2)%n;printf("%s\n",c[j]);}return 0;
}
PS:无语~
这篇关于zoj 3492 Kagome Kagome的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!