Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
3475 杨洋杰 字符串包含判断 C++ Accepted 0 MS 276 KB 252 2024-06-08 17:28:29

Tests(10/10):


Code:

#include<iostream> using namespace std; string s1,s2; void fun2(){ int t=s1.find(s2); if(t<s1.size()) cout<<"yes"<<endl; else cout<<"no"<<endl; } int main(){ getline(cin,s1); getline(cin,s2); fun2(); return 0; }