返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<string>
  4. using namespace std;
  5. int main()
  6. {
  7.     string s="yomama";
  8.     cout<<"the string:"<<s<<endl;
  9.     cout<<s.replace(3,4,"other")<<endl;
  10.    
  11.     string s2="yomama";
  12.     cout<<"the string:"<<s2<<endl;
  13.     cout<<s2.replace(s2.find("ma"),4," ")<<endl;
  14.    
  15.     string s3="yomama";
  16.     cout<<"the string:"<<s3<<endl;
  17.     cout<<s3.replace(s3.begin(3),s3.end(),'a','a')<<endl;
  18.    
  19.     system("pause");
  20.     return 0;   
  21. }
複製代碼
Attention Seeker </3

TOP

返回列表