#包含?“string.h“
int?主()
{
?夏爾。str【10】【30】= { 0 };
?夏爾。tem【30】= { 0 };
?int?I、j;
?Printf(“請輸入10單詞:“);?
?for(I = 0;我& lt10;i++)//輸入
?scanf(“% s“,str【I】);
?for(I = 0;我& lt9;i++)//排序
for(j = I+1;j & lt10;j++)
if(strcmp(str【I】,str【j】)& gt;0)
{
?strcpy(tem,str【I】);
?strcpy(str【I】,str【j】);
?strcpy(str【j】,tem);
}
?Printf(“這10個單詞按字典排序並輸出為:\ n“);
?for(I = 0;我& lt10;i++)//?輸出
?{
?printf(“% s \ n“,str【I】);
?}
}