C语言找出最长的字符串。输入5个字符串,输入其中最长的字符串。
C语言找出最长的字符串。输入5个字符串,输入其中最长的字符串。
日期:2019-06-04 08:51:53 人气:1
#include
#include
int main()
{
int i = 0;
char s[80] = {""}, max[80] = {""};
printf("输入五个字符串:\n");
scanf("%s",s);
strcpy(max,s);
for(i=1; i<5; i++)
{
scanf("%s",s);
if( strcmp(max,s)<0 )
strcpy