使用选择法排序字符串
摘要:```c
#include
#include
int main()
{
char a[3][100];
for(int i=0;i……
直接当成数字来比较都可行
摘要:```cpp
#include
using namespace std;
int main()
{
string a,b,c;
cin>>a>>b>>c;
if(ac) cout……
[编程入门]三个字符串的排序-JAVA题解
摘要: import java.util.Scanner;
public class Main {
public static void main(Str……
编写题解 1044: [编程入门]三个字符串的排序
摘要:```c
#include
#include
#include
#include
int main()
{
char a[3][128];//每一行存一串字符串
cha……
编写题解 1044: [编程入门]三个字符串的排序
摘要:解题思路:注意事项:参考代码:#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int compare(const voi……
1044题 : 三个字符串的排序
摘要:# 自己写的代码(没有写完,代码不好)
```c
#include
#include
int main()
{
char a[20],b[20],c[20];
get……