2 条题解

  • 1
    @ 2024-7-24 17:02:21
    #include <bits/stdc++.h>
    using namespace std
    int main() {
    	cin>>s1>>s2
    	if(s1.find(s2)!=-l){
    		cout<<s2<<"is substring of"<<s1	}
    	else if(s2.find(s1)!=-l){
    		cout<<s1<<"is substring of"<<s2
    	}
    	else{
    		cout<<"No substring"
    	}
    	return 0;
    }
    
    • @ 2024-7-24 17:04:33

      思路:直接三个if判断,用find找就行了👍

  • 0
    @ 2024-7-24 16:43:48
    
    

    #include<bits/stdc++.h> #define ll long long using namespace std; int main(){ string s;//定义字符串。 while(cin>>s){//输入字符串。 for(int i=s.size()-1;i>=0;i--){//循环输出。 cout<<s[i]; } cout<<endl;//换行。 } return 0; }

    
    
    • 1

    信息

    ID
    345
    时间
    1000ms
    内存
    128MiB
    难度
    7
    标签
    递交数
    66
    已通过
    14
    上传者