美文网首页我家丫头的cpp
c语言比较字符串

c语言比较字符串

作者: 李药师_hablee | 来源:发表于2019-04-02 09:14 被阅读0次

    代码

    //比较字符串
    #include<stdio.h>
    #include<string.h>
    
    int myCompare(const char* s1, const char* s2);
    
    int main()
    {
        char s1[10];
        char s2[10];
        printf("input s1:");
        scanf("%s",&s1);
        printf("input s2:");
        scanf("%s",&s2);
        
        printf("%d",myCompare(s1,s2));
        
        return 0;
     } 
     
     int myCompare(const char* s1, const char* s2)
     {
        while(*s1==*s2 && *s1 != '\0')
        {
            s1++;
            s2++;
         }
        return *s1 - *s2;
     }
    

    输出

    output.PNG

    相关文章

      网友评论

        本文标题:c语言比较字符串

        本文链接:https://www.haomeiwen.com/subject/lwfwbqtx.html