题解 | #字符串字符匹配#

字符串字符匹配

http://www.nowcoder.com/practice/22fdeb9610ef426f9505e3ab60164c93

#include<stdio.h>
#include<string.h>
int main(){
    char short_str[300]={'\0'},long_str[300]={'\0'};
    int count=0;
    while(scanf("%s",short_str)>0){
        scanf("%s",long_str);
        for(int i=0;i<strlen(short_str);i++){
            for(int j=0;j<strlen(long_str);j++){
                if(long_str[j]==short_str[i]){
                    count++;
                    break;
                }
            }
        }
        if(count==strlen(short_str))
            printf("true");
        else printf("false");
    }
}
全部评论

相关推荐

11-02 09:49
已编辑
货拉拉_测试(实习员工)
热爱生活的仰泳鲈鱼求你们别卷了:没事楼主,有反转查看图片
点赞 评论 收藏
分享
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务