Problem1429--ZTP015 字符串长度的比较

1429: ZTP015 字符串长度的比较

Time Limit: 1 Sec  Memory Limit: 128 MB
Submit: 3  Solved: 3
[Submit] [Status] [Web Board] [Creator:]

Description

所属年份:2010.9;2011.3;2012.3;
编写函数fun,其功能是:比较字符串的长度,(不得使用C语言提供的求字符串长度的函数),函数返回较长的字符串。若两个字符长度相同,则返回第一个字符串。

例如,输入beijingshanghai(为回车键),函数将返回shanghai。

提示:很多同学答案错误的原因是没能通过下面的测试用例:输入两个相同长度的字符串,结果是输出第2个字符串。

例如: 输入  

suzhou

xuzhou

你的正确输出应该是 suzhou

#include <stdio.h>
char  *fun ( char *s,  char *t)
{
}
int main ( )
{
    char a[20],b[20];
    gets( a);
    gets( b);
    printf("%s\n",fun (a, b));
    return 0;
}

Sample Input

suzhou
beijing

Sample Output

beijing

Source/Category