码迷,mamicode.com
首页 > 其他好文 > 详细

模拟实现strcmp

时间:2019-05-07 18:14:22      阅读:137      评论:0      收藏:0      [点我收藏+]

标签:war   include   ==   define   amp   use   字符   stdio.h   char s   

#define _CRT_SECURE_NO_WARNINGS 1
#include<stdio.h>
#include<stdlib.h>
int My_strcmp(char str1[], char str2[])
{
char p = str1;
char
q = str2;
while ((p != ‘\0‘) || (q != ‘\0‘))
{
if (p > q)
{
return 1;
}
else if (p < q)
{
return -1;
}
p++;
q++;
}
return 0;
}
int main()
{
char str1[100];
char str2[100];
scanf("%s", &str1);
scanf("%s", &str2);
int result = My_strcmp(str1, str2);
if (result == 0)
{
printf("两个字符串相等");
}
if (result > 0)
{
printf("str1大于str2");
}
if (result < 0)
{
printf("str1小于str2");
}
system("pause");
return 0;
}

模拟实现strcmp

标签:war   include   ==   define   amp   use   字符   stdio.h   char s   

原文地址:https://blog.51cto.com/14239789/2390540

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!