求字符串的max
/*从键盘输入3个可带空格的字符串(约定:字符数≤127字节),输出最大的字符串。编程可用素材:printf("Please input the first string:\t")、printf("Please input the second string:\t")、
printf("Please input the third string:\t")、printf("\n最大字符串是:…。
程序的运行效果应类似地如图1所示,图1中的C program、hello、god save me是从键盘输入的内容。
Please input the first string: C program
Please input the second string: hello
Please input the third string: god save me
最大字符串是:hello
*/
#include<stdio.h>
#include<string.h>
int main(void)
{
char s1[128], s2[128], s3[128], ss[128];
printf("Please input the first string:\t");
gets(s1);
printf("Please input the second string:\t");
gets(s2);
printf("Please input the third string:\t");
gets(s3);
ss[128] = s1[128];
if (strcmp(ss,s2)<0)
{
ss[128] = s2[128];
}
if(strcmp(ss,s3)<0)
{
ss[128] = s3[128];
}
printf("\n最大字符串是:%s\n", ss);
return 0;
}
求高手 为什么运行出不来呢 真心解释