Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
82984 何思佳 字符串包含判断 C++ Accepted 1 MS 276 KB 227 2024-07-13 18:04:49

Tests(10/10):


Code:

#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; }