| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 151182 | 翁思宸 | 字符串包含判断 | C++ | Accepted | 1 MS | 276 KB | 304 | 2026-04-10 18:14:26 |
//1467 字符串包含判断 #include<iostream> #include<cstdio> #include<cstring> #include<cmath> using namespace std; int main(){ string x,y; int s; cin>>x>>y; s=x.find(y); if(s>=1){ cout<<"yes"; } else { cout<<"no"; } return 0; }