您的当前位置:首页>新品 > 正文

改错前奥运参赛国的出场次序(附程序)_焦点精选

来源:CSDN 时间:2023-02-24 08:16:33


(相关资料图)

改错前

奥运参赛国出场次序:输入奥运会参赛国国名,并按照字典序对其进行排序。要求:参赛国数量不超过150个,每个国家的名字不超过9个字符。提示:‘\0’占一个字符。要求:请找出下面程序的错误并改正。

#include#include #define N 150#define MAX_LEN 10void SortString(char str[][MAX_LEN], int n); int main(){    int i, n;    char name[N][MAX_LEN];      printf("How many countries?");    scanf("%d",&n);         getchar();    printf("Input their names\n");     for(i=0;i<N;I++)        GETS(NAME[I]);      code="" int=""      void="" sortstring(name[n][max_len],="" n);  =""     printf(?sorted="" results:\n?);    for(i="0;i<n;i++)    {        puts(name[i]);     "     }    return="" 0; } void="" sortstring(char="" str[][max_len],="" n)    ="" {    int="" i,j;    char="" temp[max_len];     for(i="0;i<n;i++)    {        for(j=i+1;j<n;j++)        {            if(str[j]<str[i])       "             {                strcpy(temp,str[i]);                strcpy(str[i],str[j]);                strcpy(str[j],temp);            }        }    }}

改错后

#include#include #define N 150#define MAX_LEN 10void SortString(char str[][MAX_LEN], int n); int main(){    int i, n;    char name[N][MAX_LEN];     printf("How many countries?");    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]);      }    return 0; } void SortString(char str[][MAX_LEN], int n){    int i, j;    char temp[MAX_LEN];     for (i = 0; i < n; 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);             }         }     }}

标签:

最新新闻:

新闻放送
Top