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

TOP

返回列表