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

书籍源码

开发平台:

Visual C++

  1. #include <iostream>
  2. #include <string>
  3. using namespace std;
  4. int main()
  5. { string s1="week",s2="end";
  6.   cout<<"s1="<<s1<<endl;
  7.   cout<<"s2="<<s2<<endl;
  8.   s1=s1+s2;
  9.   cout<<"The new string is:"<<s1<<endl;
  10.   return 0;
  11. }
  12.  
  13.