题解 2861: 验证子串

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

筛选

2861: 验证子串

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

java验证子串(indexOf方法)

摘要:解题思路:利用indexOf方法判断一个字符串是否是另一个的子串注意事项:参考代码:package ten;import java.util.Scanner;public class 验证子串 {  ……

随便解释一下吧

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