UVa10340 - All in All
【摘要】
//UVa10340 - All in All//题目:判断s串是不是t串的子串。//已AC#include<stdio.h>#include<string.h>int main(){ //freopen("data.in","r",stdin); char ch, s[100]; while(scanf("%s...
-
//UVa10340 - All in All
-
//题目:判断s串是不是t串的子串。
-
//已AC
-
#include<stdio.h>
-
#include<string.h>
-
int main(){
-
//freopen("data.in","r",stdin);
-
char ch, s[100];
-
while(scanf("%s",s) != EOF){
-
scanf(" ");
-
int count=0;
-
//1.边读取边比较,往前推进
-
while((ch=getchar())!='\n' && ch!=EOF) if(s[count]==ch) count++;
-
//2.得到的正确字符个数
-
if(count==(int)strlen(s)) printf("Yes\n");
-
else printf("No\n");
-
memset(s,0,sizeof(s));
-
}
-
return 0;
-
}
-
-
//输入样例:DI1=ge DI2=gweijie DO=YES
-
//输入样例:DI1=ge DI2=weijie DO=NO
文章来源: gwj1314.blog.csdn.net,作者:小哈里,版权归原作者所有,如需转载,请联系作者。
原文链接:gwj1314.blog.csdn.net/article/details/54744444
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)