用c语言写一个程序,有3个字符串,要求找出其中最大者。
时间: 2024-05-03 22:19:53 浏览: 89
可以使用如下C语言程序实现:
```
#include <stdio.h>
#include <string.h>
int main() {
char str1[50], str2[50], str3[50];
printf("请输入三个字符串:\n");
scanf("%s %s %s", str1, str2, str3);
if(strcmp(str1, str2) > 0) {
if(strcmp(str1, str3) > 0) {
printf("%s 是最大的字符串。\n", str1);
} else {
printf("%s 是最大的字符串。\n", str3);
}
} else {
if(strcmp(str2, str3) > 0) {
printf("%s 是最大的字符串。\n", str2);
} else {
printf("%s 是最大的字符串。\n", str3);
}
}
return 0;
}
```
阅读全文