當前位置:成語大全網 - 書法字典 - 按升序將關鍵字放入字典中。

按升序將關鍵字放入字典中。

1234

3456

7890

wwwwww

uuuuu

1234

3456

7890

uuuuu

wwwwww

按任意鍵繼續

# include & ltstdio.h & gt

# include & ltstring.h & gt

# include & ltmemory.h & gt

主()

{

int i,j;

char tmp[20]="\0 ",str[5][20];

memset(str,' \0 ',sizeof(str));

for(I = 0;我& lt5;i++)

{

scanf("%s ",str[I]);

}

for(I = 0;我& lt5-1;i++)

{

for(j = 0;j & lt5-I-1;j++)

{

if (strcmp(str[j],str[j+1])& gt;0)

{

strcpy(tmp,str[j]);

strcpy(str[j],str[j+1]);

strcpy(str[j+1],tmp);

}

}

}

for(I = 0;我& lt5;i++)

{

printf("%s\n ",str[I]);

}

}