|
字串處理 (二) - 字串輸入 1
getline(cin,str)
接收一個字串,可以接收空格並輸出
ex:可以讀單字、句子
- #include<iostream>
- #include<cstdlib>
- #include<string>
- using namespace std;
- int main()
- {
- string str;
- cout<<"請輸入一字串(包含空白): ";
- getline(cin,str);
- cout<<"您剛輸入的字串是: "<<str<<endl;
- system("pause");
- return 0;
- }
複製代碼 |
|