[隨堂測驗] 字串處理 (四) - 字串中第n個字母為?
本帖最後由 陳品肇 於 2019-6-15 14:43 編輯
試做一執行畫面如下之程式.
- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int s;
- char str[20];
- cout<<"輸入一字串: ";
- cin.getline(str,20);
- cout<<"抓出第幾個字元? ";
- cin>>s;
- cout<<"第"<<s<<"個字元為: "<<str[s-1]<<endl;
- system("pause");
- return 0;
- }
複製代碼 |
附件:
您需要登錄才可以下載或查看附件。沒有帳號?註冊