只要一个字符串中包含大写“GLB”,高老板就认为这是一个GLB串。现在给你一些字符串,请你帮高老板判断这些字符串是不是GLB串。
首先是一个整数T,表示T行数据,每行一个字符串(只包括大小写字母),长度小于100.
如果是高老板串输出YES,否则输出NO。
Copy Sample Input
3
GLBSHIGEmaiIPADMINI4detuhao
wobushiGlb
hahaha
Copy Sample Output
YES
NO
NO
分析:暴力匹配!利用string的内置函数find即可。
#include
#include
#include
#include
using namespace std;
string tmp;
int T;
void init(){
cin>>T;
}
void solve(){
while(T--){
cin>>tmp;
if(tmp.find("GLB")==string::npos)cout<<"NO"<<endl;
else cout<<"YES"<<endl;
}
}
int main(int argc, char *argv[]) {
init();
solve();
return ;
}
手机扫一扫
移动阅读更方便
你可能感兴趣的文章