Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
82983 | 何思佳 | 字符串包含判断 | C++ | Accepted | 0 MS | 272 KB | 216 | 2024-07-13 18:03:15 |
#include<bits/stdc++.h> using namespace std; string s1,s2; int main(){ getline(cin,s1); getline(cin,s2); if(s1.find(s2)<s1.length()){ cout<<"yes"; } else{ cout<<"no"; } return 0; }