返回列表 發帖
  1. #include<bits/strc++.h>
  2. using namespace std;
  3. int main()
  4. {
  5.     string str="Hello World!";
  6.     cout<<str<<endl;
  7.     cout<<"o'位置 由前往後"<<str.find('o')<<"\n";
  8.     cout<<"'o'位置 由後往前"<<str.rfind('o')<<"\n";
  9.     cout<<"\"llo\"位置 由前往後"<<str.find("llo")<<"\n";
  10.     cout<<"'l'位置 (由前往後第4個位置"<<str.find('l', 4)<<"\n";
  11.     int r=str.find('a');
  12.     cout<<"'a'位置 由前往後"<<r<<endl;
  13.     system("pause");
  14.     return 0;
  15. }
複製代碼

TOP

返回列表