返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.         string str1;
  7.     cout<<"請輸入一字串(包含空白): ";
  8.     getline(cin,str1);
  9.     cout<<"您剛輸入的字串是: "<<str1<<endl;
  10.     string str2;
  11.     cout<<"請輸入一字串(不包含空白): ";
  12.     cin>>str2;
  13.     cout<<"您剛輸入的字串是: "<<str2<<endl;
  14.    
  15.         system("pause");
  16.         return 0;
  17. }
複製代碼

TOP

返回列表