从键盘输入3个字符串,按由小到大排序(使用strcmp函数
时间: 2023-11-10 07:12:06 浏览: 187
好的,可以使用以下代码实现:
```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);
// 使用strcmp比较字符串大小,进行排序
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函数进行比较,然后按照从小到大的顺序进行排序输出。
阅读全文