基础训练 字符串对比
Posted a-little-nut
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了基础训练 字符串对比相关的知识,希望对你有一定的参考价值。
#include<iostream>
#include<string>
using namespace std;
int main(){
string s1, s2;
cin>>s1>>s2;
if(s1==s2)
cout<<2<<endl;
else if(s1.size()==s2.size()){
int flag=0;
for(int i=0; i<s1.size(); i++)
if(tolower(s1[i])!=tolower(s2[i])){
flag=1;
break;
}
if(flag==0) cout<<3<<endl;
else cout<<4<<endl;
}else
cout<<1<<endl;
return 0;
}
以上是关于基础训练 字符串对比的主要内容,如果未能解决你的问题,请参考以下文章
20155201 李卓雯 《网络对抗技术》实验一 逆向及Bof基础
Python 和 C++ 下字符串查找速度对比,你觉得Python适合算法竞赛吗