Problem B: 输入3个字符串,按由小到大顺序输出

Posted chenlong991223

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Problem B: 输入3个字符串,按由小到大顺序输出相关的知识,希望对你有一定的参考价值。

#include<stdio.h>
#include<string.h> 
int main()
{
    char a[85],b[85],c[85],t[85];         
    while(gets(a)!=NULL)
    {
        gets(b);
        gets(c);
        if(strcmp(a,b)>0)
        {
            strcpy(t,a);
            strcpy(a,b);
            strcpy(b,t);
        }
        if(strcmp(a,c)>0)
        {
            strcpy(t,a);
            strcpy(a,c);
            strcpy(c,t);
        }
        if(strcmp(b,c)>0)
        {
            strcpy(t,b);
            strcpy(b,c);
            strcpy(c,t);
       }
       puts(a);
       puts(b);
       puts(c);
   }
return 0;
}

 

以上是关于Problem B: 输入3个字符串,按由小到大顺序输出的主要内容,如果未能解决你的问题,请参考以下文章

C语言:写一函数,用“冒泡法”对输入的10个字符按由小到大顺序排列

编写一个自定义函数,完成将3个字符按从小到大顺序输出

输入3个整数,按从小到大的顺序输出(用指针处理)

输入3个整数,按从小到大的顺序输出(用指针处理)

输入3个字符串,要求按由小到大的顺序输出

键盘任意输入三个整数,要求按照从小到大的熟悉排列python