欧美极品高清xxxxhd,国产日产欧美最新,无码AV国产东京热AV无码,国产精品人与动性XXX,国产传媒亚洲综合一区二区,四库影院永久国产精品,毛片免费免费高清视频,福利所导航夜趣136
標題:
C語言程序:輸入五個國家的名稱按字母順序排列輸出
[打印本頁]
作者:
v家的閨女vjibn
時間:
2016-5-8 21:01
標題:
C語言程序:輸入五個國家的名稱按字母順序排列輸出
#include<stdio.h>
#include<string.h>
int main()
{
char cs [5][20];
char st[20];
int i,j,p;
printf("input country's name:\n");
for(i=0;i<5;i++);
gets(cs[i]);
printf("\n");
for(i=0;i<5;i++)
{
p=i;strcpy(st,cs[i]);
for(j=i+1;j<5;j++)
{
if(strcmp(cs[i],st)<0)
{p=j;strcpy(st,cs[j]);}
if(p!=1)
{ strcpy(st,cs[i]);
strcpy(cs[i],cs[p]);
strcpy(cs[p],st);
}
puts(cs[i]);
}
printf("\n");
}
}
復制代碼
歡迎光臨 (http://www.raoushi.com/bbs/)
Powered by Discuz! X3.1