本帖最後由 許婷芳 於 2020-5-15 20:53 編輯
cin.getline()屬於iostream流,而getline()屬於string流,是兩個不一樣的函數。- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- char s[20];
- cout<<"請輸入一字串(包含空白): ";
- cin.getline(s,20);
- cout<<"您剛輸入的字串是: "<<s<<endl;
- system("pause");
- return 0;
- }
複製代碼 |