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

TOP

返回列表