#include <stdio.h>
#include <string.h>
#include <ctype.h>
// 自定义忽略大小写的字符串比较函数
int strcasecmp_custom(const char *s1, const char *s2)
{
int d = 0;
while (d == 0 && *s1 && *s2)
{
d = tolower((unsigned char)*s1) - tolower((unsigned char)*s2);
s1++;
s2++;
}
return d;
}
int main()
{
char str1[100];
char str2[100];
fgets(str1, sizeof(str1), stdin);
str1[strcspn(str1, "\n")] = 0; // 去除换行符
fgets(str2, sizeof(str2), stdin);
str2[strcspn(str2, "\n")] = 0; // 去除换行符
int result = strcasecmp_custom(str1, str2);
if (result < 0)
{
printf("<");
}
else if (result > 0)
{
printf(">");
}
else
{
printf("=");
}
return 0;
}
0.0分
0 人评分
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:668 |
母牛的故事 (C语言代码)浏览:478 |
简单的a+b (C语言代码)浏览:564 |
C语言程序设计教程(第三版)课后习题8.2 (C语言代码)浏览:5275 |
WU-printf基础练习2 (C++代码)浏览:2061 |
简单的a+b (C语言代码)浏览:661 |
1126题解浏览:649 |
蓝桥杯历届试题-翻硬币 (C++代码)浏览:953 |
蛇行矩阵 (C语言代码)浏览:559 |
C语言程序设计教程(第三版)课后习题5.5 (C语言代码)浏览:841 |