本帖最後由 李泳霖 於 2022-9-17 16:33 編輯
使用getline(1.輸入語法,2.存放的變數)方法,進行字串輸入- #include<iostream>
- #include<cstdlib>
- #include<string>
- using namespace std;
- int main()
- {
- string str;
- cout<<"請輸入一字串(包含空白): ";
- getline(cin,str);
- cout<<"您剛輸入的字串是: "<<str<<endl;
- system("pause");
- return 0;
- }
複製代碼 |