返回列表 發帖
本帖最後由 徐啟祐 於 2023-5-6 15:01 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     string str;
  7.     cout<<"請輸入一字串(需要你的空格:D):";
  8.     getline(cin,str);
  9.     cout<<"妳剛輸入的字串是:"<<str<<endl;
  10.     string str2;
  11.     cout<<"請輸入一字串(不需要你的空格):";
  12.     cin>>str2;
  13.     cout<<"你剛輸入的字串是:"<<str2<<endl;
  14.     system("pause");
  15.     return 0;      
  16. }
複製代碼

TOP

返回列表