当前位置:   article > 正文

C语言根据国家英文首字母进行排序_c语言按英文首字母排序

c语言按英文首字母排序

C语言根据国家英文首字母进行排序

#include <stdio.h>
#include <string.h>
#define MAX_LEN 10
#define N       150
void SortString(char str[][MAX_LEN],int n);
int main()
{
    int i,n;
    char name[N][MAX_LEN];
    printf("How many countries ?\n" );
    scanf("%d",&n);
    getchar();
    printf("Input their names:\n");
    for(i=0;i<n;i++){
        gets(name[i]);
    }
    SortString(name,n);
    printf("Sorted results:\n");
    for(i=0;i<n;i++){
        puts(name[i]);
    }
}
void SortString(char str[][MAX_LEN],int n)
{
    int i,j;
    char temp[MAX_LEN];
    //遍历所有国家名称
    for(i=0;i<n-1;i++)  
    {
        //遍历每个国家的首字母
        for(j=i+1;j<n;j++)
        {
            if(strcmp(str[j],str[i])<0)
            {
                strcpy(temp,str[i]);
                strcpy(str[i],str[j]);
                strcpy(str[j],temp);
            }
        }
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41

效果截图
效果截图

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小蓝xlanll/article/detail/651101
推荐阅读
相关标签
  

闽ICP备14008679号