zhangyuxuan


私信TA

用户名:dotcpp0741056

访问量:35

签 名:

悲观无用,不如思考伟大的蓝图。

等  级
排  名 4559
经  验 1674
参赛次数 1
文章发表 1
年  龄 0
在职情况 学生
学  校
专  业

  自我简介:

TA的其他文章

解题思路:

在s1字符串后连接一个s1,用find()函数进行搜索即可。

注意事项:

参考代码:

#include <iostream>

#include <string>

using namespace std;

int main()

{

string s1;

string s2;


while(cin>>s1>>s2){

if(s1.size()<s2.size())

{

cout<<"no"<<endl;

}

else

{

s1.append(s1);

int t;

t=s1.find(s2);

if(t>0)

cout<<"yes"<<endl;

else

cout<<"no"<<endl;

}

}

return 0;

}


 

0.0分

0 人评分

  评论区

  • «
  • »