返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;

  4. int main()
  5. {
  6.         cout << "請輸入字串(含空白):" ;
  7.         string i;
  8.   getline(cin,i);
  9.           cout << "你剛剛輸入的字串是:" << i << endl;
  10.         string s;
  11.         cout << "請輸入字串(不含空白):";
  12.   cin>>s;
  13.         cout << "你剛剛輸入的字串是:" << s << endl;
  14.         system("pause");
  15.         return 0;
  16. }
複製代碼

TOP

返回列表