首页 > 代码库 > CCF_ 201409-3_字符串匹配

CCF_ 201409-3_字符串匹配

水。

 

#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_字符串匹配