| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 135918 | 王丞杰 | 字符串包含判断 | C++ | Wrong Answer | 1 MS | 276 KB | 171 | 2025-11-08 17:22:51 |
#include<bits/stdc++.h> using namespace std; int main() { string s,s1; cin>>s>>s1; int a=-1; a=s1.find(s1); if(a !=-1) cout<<"yes"; else cout<<"no"; }
------Input------
fdcdgtofze dgtf
------Answer-----
no
------Your output-----
yes