1420: [蓝桥杯]字符串对比 【简单 / 字符串】

1420: [蓝桥杯]字符串对比  【简单 / 字符串】
http://oj.ecustacm.cn/problem.php?id=1420

#include<iostream>
#include<algorithm>
#include<cmath>
using namespace std;
int main(void)
{
	string a,b; cin>>a>>b;
	if(a.size()!=b.size()) 
	{
		cout<<1<<endl;
		return 0;
	}
	if(a==b)
	{
		cout<<2<<endl;
		return 0;
	}
	int i;
	for(i=0;i<a.size();i++)
	{
		char temp1=a[i]+32;
		char temp2=a[i]-32;
		if(temp1!=b[i] && temp2!=b[i] && a[i]!=b[i])
				break;
	}
	if(i==a.size())
	{
		cout<<3<<endl;
		return 0;
	}
	if(a!=b)
	{
		cout<<4<<endl;
		return 0;
	}
	return 0;
}
上一篇:TLS/SSL 协议详解 加密套件的选择


下一篇:navicat使用ssh登录mysql报错:expected key exchange group packet from server