f0305.cpp
资源名称:c.rar [点击查看]
上传用户:puke2000
上传日期:2022-07-25
资源大小:912k
文件大小:1k
源码类别:

C#编程

开发平台:

Visual C++

  1. //=====================================
  2. // f0305.cpp
  3. //=====================================
  4. #include<iostream>
  5. #include<algorithm>
  6. using namespace std;
  7. //-------------------------------------
  8. int main(){
  9.   string a, s1 = "Hello ";
  10.   string s2 = "123";
  11.   a = s1;                                              // copy
  12.   cout<<(a==s1 ? "" : " not")<<"equaln";              // compare
  13.   cout<<(a+=s2)<<endl;                                 // concatenate
  14.   reverse(a.begin(), a.end());                         // reverse
  15.   cout<<a<<endl;
  16.   cout<<a.replace(0,9,9,'c')<<endl;                    // set
  17.   cout<<(s1.find("ell")!= -1 ? "" : "not ")<<"foundn";// find string
  18.   cout<<(s1.find('c')!= -1 ? "": "not ")<<"foundn";   // find char
  19. }//====================================
  20.