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

书籍源码

开发平台:

Visual C++

  1. #include <iostream>
  2. #include <cstring>
  3. using namespace std;
  4. int main()
  5.  {void swap(char *,char *);
  6.   char str1[20],str2[20],str3[20];
  7.   cout<<"input three line:"<<endl;
  8.   gets(str1);
  9.   gets(str2);
  10.   gets(str3);
  11.   if(strcmp(str1,str2)>0)  swap(str1,str2);
  12.   if(strcmp(str1,str3)>0)  swap(str1,str3);
  13.   if(strcmp(str2,str3)>0)  swap(str2,str3);
  14.   cout<<endl<<"Now,the order is:"<<endl;
  15.   cout<<str1<<endl<<str2<<endl<<str3<<endl;
  16.   return 0;
  17.  }
  18.  void swap(char *p1,char *p2)          /* 交换两个字符串 */
  19.  {char p[20];
  20.   strcpy(p,p1);strcpy(p1,p2);strcpy(p2,p);
  21.  }
  22.