标题:[求助] 输入五个国家的名字,按字母顺序(即按ASCII码从小到大的顺序)排列输 ...
只看楼主
MCA
Rank: 1
等 级:新手上路
帖 子:1
专家分:0
注 册:2012-2-11
得分:0 
#include "stdio.h"
#include "string.h"
void main()  
{  
    char a[5][20], b[20];
    int i,j;
    printf("please input five countries' names:\n");  
    for(i=0;i<5;i++)  
      gets(a[i]);  
    for(i=0;i<4;i++)  
       for(j=i+1;j<5;j++)  
              if(strcmp(a[i],a[j])>0)
                 {     
                    strcpy(b,a[i]);
                    strcpy(a[i],a[j]);
                    strcpy(a[j],b);

                 }  
     printf("the array of those five countries now is :\n");  
     for(i=0;i<5;i++)  
       printf("%s\n",a[i]);  
         getch();  
}

为什么红字的部分要那么写啊???
2012-02-14 17:50



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-290264-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.022549 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved