xiaobai


私信TA

用户名:dotcpp0781597

访问量:210

签 名:

等  级
排  名 2674
经  验 2196
参赛次数 0
文章发表 5
年  龄 0
在职情况 学生
学  校 北部湾大学
专  业

  自我简介:

#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 人评分

  评论区

  • «
  • »