xt6-11-1.cpp
上传用户:liubin
上传日期:2022-06-13
资源大小:85k
文件大小:1k
源码类别:

书籍源码

开发平台:

Visual C++

  1. #include <iostream>
  2. using namespace std;
  3. int main()
  4. {void sort(char s[][6]);
  5.  int i;
  6.  char str[10][6];
  7.  cout<<"input 10 strings:"<<endl;
  8.  for (i=0;i<10;i++)
  9.    cin>>str[i];
  10.  sort(str);
  11.  cout<<"Now,the sequence is:"<<endl;
  12.  for (i=0;i<10;i++)
  13.    cout<<str[i]<<endl;
  14.  return 0;
  15. }
  16. void sort(char s[][6])
  17. {int i,j;
  18.  char *p,temp[10];
  19.  p=temp;
  20.  for (i=0;i<9;i++)
  21.    for (j=0;j<9-i;j++)
  22.      if (strcmp(s[j],s[j+1])>0)
  23.       {strcpy(p,s[j]);
  24.        strcpy(s[j],s[+j+1]);
  25.        strcpy(s[j+1],p);
  26.       }
  27. }