Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
82866 | 揭伟琦 | 字符串包含判断 | C++ | Accepted | 0 MS | 280 KB | 217 | 2024-07-13 16:02:00 |
#include<iostream> #include<cstring> using namespace std; int main(){ string a; string b; cin >>a>>b; int idx=0; idx =a.find(b); if(idx==-1){ cout<<"no"; } else{ cout <<"yes"; } return 0; }