编写一个函数 int mystrcmp(const char * src, const char * dst),用于比较两个字符串的大小(自己实现strcmp()函数)。要求如果字符串src大于字符串dst返回 1,小于返回 -1,相等返回 0。
输入描述:
键盘录入 2 个长度小于 100 的字符串


输出描述:
输出调用 mystrcmp() 函数返回的结果
示例1

输入

hello
helloworld

输出

-1
示例2

输入

hello
hello

输出

0
示例3

输入

helloworld
hello

输出

1
加载中...