编写程序,输入10至20个城市名,按字母顺序输出城市名清单。

2024-12-16 10:36:28
推荐回答(5个)
回答1:

编写程序,输入10至20个城市名,按字母顺序输出城市名清单:
#include
#include
#include
#define M 10
void input(char *city[],int n);
void sort(char *city[],int n);
int main(int argc, char **agrv){
char *city[M];
int i= 0;
input(city,M);
sort(city,M);
printf("城市按拼音排列输出如下:\n");
for(i=0;i{
printf("%s\t",city[i]);
}
printf("\n");
return 0;
}
void input(char *city[],int n){
char str[20];
int i;
printf("请输入 %d 个城市的名字(请用拼音) :\n",M);
for(i=0; i < n; i++)
{
scanf("%s",str);
city[i] = (char *)malloc(sizeof(char)*(strlen(str)));
strcpy(city[i],str);
}
}
void sort(char *city[],int n){
char *tmp;
int i,j;
for(i=0;i{
for(j=1;j {
if(strcmp(city[j],city[j-1])<0)
{
tmp=city[j-1];
city[j-1]=city [j];
city[j]=tmp;
}
}
}
}

回答2:

#include
using namespace std;
#include
void a(char (*p)[100],int n)
{char temp[100];
int i;
for(i=0;i for(int j=i+1;j if(strcmp(p[i],p[j])>0)
{strcpy(temp,p[i]);strcpy(p[i],p[j]);strcpy(p[j],temp);}
}
int main()
{
char city[20][100];
int i;
cout<<"input10~20 city name:";
int n;
cin >> n;
for(i=0;i cin>>city[i];
a(city,n);
for(i=0;i cout< return 0;
}

回答3:

#include
using namespace std;
int main()
{
int i,j,n;cout<<"有几座城市";
cin>>n;
char name[20][50];
for(i=0;i {cout<<"input the name of"< cin>>name[i];}
char *p[20]
}不会对你有帮助的

回答4:

#include "stdio.h"

#include "stdlib.h"

typedef struct Sqlist

{

char *V;

int len;

}SQLIST;

SQLIST myList;

int n;

int init()

{

请自己填写

}

void build()

{

请自己填写

}

void display()

{

int i;

for(i=0;i
printf("%c",myList.V[i]);

}

void main()

{

n=26;

if(!init())exit(0);

build();

display();

}

回答5:

北京科技大学的么?