返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<string>
  4. using namespace std;
  5. int main()
  6. {
  7.     int x;
  8.     char str[50];
  9.     cout<<"輸入一字串"<<endl;   
  10.     cin.getline(str,50);   
  11.     cout<<"想讓電腦幫你抓第幾個字母"<<endl;
  12.     cin>>x;
  13.     cout<<"字串的第"<<x<<"字母是"<<x[str-1]<<endl;
  14.    
  15.    system("pause");
  16.    return 0;


  17. }
複製代碼

TOP

返回列表