標題:
[作業] 字串處理 (四) - 字串中第n個字母為?
[打印本頁]
作者:
tonyh
時間:
2017-8-19 15:25
標題:
[作業] 字串處理 (四) - 字串中第n個字母為?
本帖最後由 tonyh 於 2019-8-19 22:25 編輯
試分別利用 getline() 函式與 cin.getline() 函式, 做一執行畫面如下之程式.
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
int n;
string str;
cout<<"輸入一字串: ";
getline(cin,str);
cout<<"抓出第幾個字元? ";
cin>>n;
cout<<"第"<<n<<"個字元為: "<<str[n-1]<<endl;
system("pause");
return 0;
}
複製代碼
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int n;
char str[50];
cout<<"輸入一字串: ";
cin.getline(str,50);
cout<<"抓出第幾個字元? ";
cin>>n;
cout<<"第"<<n<<"個字元為: "<<str[n-1]<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃宥鈞
時間:
2017-8-26 12:18
此帖僅作者可見
作者:
蕭澧邦
時間:
2017-8-26 13:49
此帖僅作者可見
作者:
許紘誌
時間:
2017-8-26 13:52
此帖僅作者可見
作者:
譚暐霖
時間:
2017-8-26 13:54
此帖僅作者可見
作者:
蔡幸融
時間:
2017-8-26 14:05
此帖僅作者可見
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2