头哥实践教学平台答案c语言
时间: 2024-01-04 21:20:13 浏览: 1380
以下是一个使用C语言编写的头哥实践教学平台答案的示例代码:
```c
#include <stdio.h>
#include <string.h>
int main(void) {
char a[30], b[30], c[30], max[30];
scanf("%s %s %s", &a, &b, &c);
if(strcmp(a, b) > 0) {
strcpy(max, a);
strcpy(a, b);
strcpy(b, max);
}
if(strcmp(a, c) > 0) {
strcpy(max, a);
strcpy(a, c);
strcpy(c, max);
}
if(strcmp(b, c) > 0) {
strcpy(max, b);
strcpy(b, c);
strcpy(c, max);
}
printf("%s\n%s\n%s", a, b, c);
return 0;
}
```
该代码通过比较输入的三个字符串,将它们按照字典顺序进行排序,并输出排序后的结果。
阅读全文