使用C语言输入三个字符串,按由小到大的顺序输出
时间: 2023-12-07 16:14:40 浏览: 96
好的,可以按照以下方式来实现:
```c
#include <stdio.h>
#include <string.h>
int main() {
char str1[100], str2[100], str3[100];
printf("请输入三个字符串,每个字符串之间用空格分开:\n");
scanf("%s %s %s", str1, str2, str3);
if (strcmp(str1, str2) > 0) {
char temp[100];
strcpy(temp, str1);
strcpy(str1, str2);
strcpy(str2, temp);
}
if (strcmp(str1, str3) > 0) {
char temp[100];
strcpy(temp, str1);
strcpy(str1, str3);
strcpy(str3, temp);
}
if (strcmp(str2, str3) > 0) {
char temp[100];
strcpy(temp, str2);
strcpy(str2, str3);
strcpy(str3, temp);
}
printf("按照从小到大的顺序输出为:\n");
printf("%s\n%s\n%s\n", str1, str2, str3);
return 0;
}
```
这里使用了 `strcmp` 函数来比较字符串的大小,并且使用了 `strcpy` 函数来交换字符串的位置。
阅读全文