C语言的题目有3个字符串,要求找出其中最大者。(注意用字符串处理函数) 答案 #include main() {char str1[10],str2[10],str3[10],temp[10]; gets(str1); gets(str2); gets(str3); if (strcmp(str1,str2)>0) strcpy(temp,str1); else strcpy(temp,str2); if (strcmp(str3,temp)>0) st...