题解 2861: 验证子串

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

随便解释一下吧

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main ( ){    char s1[201]={0} ,s2[201]={0} ;    int i=0 ,a=0 ,c=……

2861: 验证子串

摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>#include <string.h>#define maxn 205char cmp(char……

解 2861: 验证子串

摘要:解题思路:注意事项:参考代码:a = input().strip()b = input().strip()if a.find(b) != -1:    print(f"{b} is substring……

题解 2861: 验证子串

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){string s,s1;cin>>s>>s1;if(s1.f……

2861: 验证子串

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef  long long ll;const ll N=1e7;char……

2861: 验证子串

摘要:解题思路:注意事项:参考代码:    #include <bits/stdc++.h>    using namespace std;    typedef long long ll;    int ……

题解 2861: 验证子串

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ string s,s1; cin>>s>>s1; if(s……

2861: 验证子串

摘要:解题思路:注意事项:谁看得出来下面的数据有什么区别?测试数据:1.abcdddncabca2.abc dddncabca参考代码:s1 = "".join(input().split()) s2 =……

验证字串C解

摘要:解题思路:注意事项:用gets只能过一部分,scanf能全过,也不知道为啥参考代码:#include<stdio.h>#include<string.h>int main(){    char s1[……