標題:
字串處理 (二) - 字串輸入 1
[打印本頁]
作者:
tonyh
時間:
2015-12-5 11:13
標題:
字串處理 (二) - 字串輸入 1
本帖最後由 tonyh 於 2015-12-5 11:33 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string str;
cout<<"請輸入一字串(包含空白): ";
getline(cin,str);
cout<<"您剛輸入的字串是: "<<str<<endl;
system("pause");
return 0;
}
複製代碼
作者:
洪振庭
時間:
2015-12-5 11:38
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string str2;
cout<<"請輸入一字串:"<<endl;
getline(cin,str2);
cout<<"你剛輸入的字串內容:"<<str2<<endl;
system("pause");
return 0;
}
複製代碼
作者:
李知易
時間:
2015-12-5 11:38
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string str;
cout<<"請輸入一個字串(包含空白):"<<endl;
getline(cin,str);
cout<<"您輸入的字串是:"<<str<<endl;
system("pause");
return 0;
}
複製代碼
作者:
梁和雋
時間:
2015-12-5 11:39
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string str;
cout<<"請輸入一字串(包含空白): ";
getline(cin,str);
cout<<"您剛輸入的字串是: "<<str<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2