码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2018-11-30 11:19:16      阅读:233      评论:0      收藏:0      [点我收藏+]

标签:null   col   ring   include   bsp   strcpy   ble   puts   pre   

#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个字符串,按由小到大顺序输出

标签:null   col   ring   include   bsp   strcpy   ble   puts   pre   

原文地址:https://www.cnblogs.com/chenlong991223/p/10042301.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!