[隨堂測驗] 字串處理 (四) - 字串中第n個字母為?
本帖最後由 tonyh 於 2014-7-26 17:46 編輯
試做一執行畫面如下之程式.
- #include<iostream>
- #include<cstdlib>
- #include<string>
- using namespace std;
- int main()
- {
- string str;
- int a;
- cout<<"請輸入一任意英文字串: ";
- getline(cin,str);
- cout<<"想讓電腦幫你抓出第幾個字母: ";
- cin>>a;
- cout<<str[a-1]<<endl;
- system("pause");
- return 0;
- }
複製代碼- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- char str[50];
- int a;
- cout<<"請輸入一任意英文字串: ";
- cin.getline(str,50);
- cout<<"想讓電腦幫你抓出第幾個字母: ";
- cin>>a;
- cout<<str[a-1]<<endl;
- system("pause");
- return 0;
- }
複製代碼 |
附件:
您需要登錄才可以下載或查看附件。沒有帳號?註冊