码迷,mamicode.com
首页 > 其他好文 > 详细

CCF_ 201409-3_字符串匹配

时间:2016-09-06 21:10:30      阅读:126      评论:0      收藏:0      [点我收藏+]

标签:

水。

 

#include<cstdio>
#include<iostream>
#include<cstring>
using namespace std;

int main()
{
    char a[105],b[105];
    cin >> a;
    strcpy(b,a);
    strlwr(b);
    int flag,n;
    cin >> flag >> n;
    while(n--)
    {
        char temp[105],temp2[105];
        cin >> temp;
        strcpy(temp2,temp);
        if(!flag)
        {
            strlwr(temp2);
            if(strstr(temp2,b)) cout << temp << endl;
        }
        else
        {
            if(strstr(temp,a)) cout << temp << endl;
        }
    }
    return 0;
}

 

CCF_ 201409-3_字符串匹配

标签:

原文地址:http://www.cnblogs.com/zhurb/p/5846970.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!