#include
#include
#include
void order(char test[20])//排序函数,用的冒泡法,并且是按照asc2码排的,并没有分大小写
{
int i,j,cir;
char con;
for(i=0;i<20;i++)
for(j=i;j<20;j++)
{
if(test[i]>test[j])//如果test[j]的字符小于test[i]的字符则交换
{
con=test[i];
test[i]=test[j];
test[j]=con;
}
}
for(cir=0;cir<20;cir++)
{
cout<
}
int main()
{
char test[20];
int cir;
int n=0;
while(n!=20)
{
printf("请输入第%d字母\n",n+1);
cin>>test[n];
if((test[n]>='A'test[n]<='Z')||(test[n]>='a'test[n]<='z'))//判断是字母则继续否则else
{
n=n+1;
}
else
{
printf("请输入当前字母\n");
}
}
for(cir=0;cir<20;cir++)
{
cout<
cout<
return 0;
}
}