解题思路:
注意事项:
参考代码:
#include<stdio.h>
#include<string.h>
#include<ctype.h>
#include<math.h>
int main()
{
int i,flag;
char a[11],b[11];
scanf("%s%s",&a,&b);
if(strlen(a)!=strlen(b)) flag=1;
else
{
if(strcmp(a,b)==0) flag=2;
else
{
for(i=0;i<strlen(a);i++)
{
a[i]=tolower(a[i]);
b[i]=tolower(b[i]);
}
if(strcmp(a,b)==0) flag=3;
else flag=4;
}
}
printf("%d",flag);
return 0;
}
0.0分
0 人评分
C二级辅导-温度转换 (C语言代码)浏览:2675 |
C二级辅导-计负均正 (C语言代码)浏览:643 |
C二级辅导-公约公倍 (C语言代码)浏览:2158 |
C语言程序设计教程(第三版)课后习题8.5 (C语言代码)浏览:610 |
C语言程序设计教程(第三版)课后习题5.5 (C语言代码)浏览:737 |
简单的a+b (C语言代码)浏览:601 |
C语言程序设计教程(第三版)课后习题6.3 (C语言代码)浏览:688 |
三角形 (C语言代码)浏览:965 |
蚂蚁感冒 (C语言代码)浏览:1408 |
C二级辅导-进制转换 (C语言代码)浏览:750 |