#include <iostream>
#include<cstring>
#include<cmath>
using namespace std;
int main()
{
char str1[10],str2[10];
cin>>str1;
cin>>str2;
int len1=strlen(str1);
int len2=strlen(str2);
if(len1!=len2){
cout<<"1"<<endl;
}
else{
int i,j;
for(i=0;i<len1;i++){
if(str1[i]!=str2[i])
break;
}/*if(strcmp(str1,str2)==0)
cout<<"2"<<endl;*/
if(i==len1){
cout<<"2"<<endl;
}
else{
for(j=0;j<len1;j++){
if(abs(str1[j]-str2[j])!=0&&abs(str1[j]-str2[j])!=32)
break;
}
if(j==len1)
cout<<"3"<<endl;
else
cout<<"4"<<endl;
}
}
return 0;
}
0.0分
0 人评分
Tom数 (C语言代码)浏览:2074 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:538 |
C语言程序设计教程(第三版)课后习题7.5 (C语言代码)浏览:640 |
点我有惊喜!你懂得!浏览:1392 |
2003年秋浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:561 |
简单的a+b (C语言代码)浏览:564 |
A+B for Input-Output Practice (IV) (C语言代码)浏览:484 |
A+B for Input-Output Practice (V) (C语言代码)浏览:640 |
WU-链表数据求和操作 (C++代码)浏览:1382 |
Wu-求圆的面积 (C++代码)浏览:1994 |