本帖最後由 許婷芳 於 2020-5-15 20:52 編輯
getline() 用法:接收一個字符串,可以接收空格並輸出。
需加上 #include<string>- #include<iostream>
- #include<cstdlib>
- #include<string>
- using namespace std;
- int main()
- {
- string str;
- cout<<"請輸入一字串(包含空白): ";
- getline(cin,str);
- cout<<"您剛輸入的字串是: "<<str<<endl;
- system("pause");
- return 0;
- }
複製代碼 |