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