C语言输入三个字符串,按由小到大的顺序输出
时间: 2023-12-07 18:06:45 浏览: 97
你可以使用strcmp()函数比较字符串大小,然后使用冒泡排序或选择排序等算法对字符串进行排序。以下是一个示例程序:
```c
#include <stdio.h>
#include <string.h>
void swap(char *str1, char *str2) {
char temp[100];
strcpy(temp, str1);
strcpy(str1, str2);
strcpy(str2, temp);
}
int main() {
char str[3][100];
int i, j;
printf("请输入三个字符串:\n");
for (i = 0; i < 3; i++) {
scanf("%s", str[i]);
}
// 冒泡排序
for (i = 0; i < 2; i++) {
for (j = 0; j < 2 - i; j++) {
if (strcmp(str[j], str[j+1]) > 0) {
swap(str[j], str[j+1]);
}
}
}
printf("排序后的字符串为:\n");
for (i = 0; i < 3; i++) {
printf("%s\n", str[i]);
}
return 0;
}
```
这个程序使用冒泡排序对三个字符串进行排序,可以根据需要使用其他排序算法进行改进。
阅读全文