標題:
[作業] 字串處理 (四) - 字串中第n個字母為?
[打印本頁]
作者:
歐柏罕
時間:
2017-12-19 19:01
標題:
[作業] 字串處理 (四) - 字串中第n個字母為?
本帖最後由 歐柏罕 於 2017-12-26 17:42 編輯
試分別利用 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-12-19 19:10
此帖僅作者可見
作者:
張閎鈞
時間:
2017-12-19 19:17
此帖僅作者可見
作者:
巫沛庭
時間:
2017-12-19 19:32
此帖僅作者可見
作者:
巫晉宇
時間:
2017-12-26 18:04
此帖僅作者可見
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2