返回列表 發帖
  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. int main()
  4. {
  5.     string str1="honolulu";
  6.     cout<<str1.replace(1,3,"a")<<endl;
  7.     string str2="honolulu";
  8.     cout<<str2.replace(str2.find("u"),1,"a")<<endl;
  9.     string str3="honolulu";
  10.     replace(str3.begin(),str3.end(),'u','a');
  11.     cout<<str3<<endl;
  12.     system("pause");
  13.     return 0;
  14. }
複製代碼

TOP

返回列表