Board logo

標題: stringstream 字串串流 (一) [打印本頁]

作者: 鄭繼威    時間: 2023-5-20 12:00     標題: stringstream 字串串流 (一)

試利用 stringstream 型別,將多個字串串起來
再利用 str() 函式將物件中的字串帶出來。


法1
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<sstream>
  4. using namespace std;
  5. int main()
  6. {
  7.     stringstream ss;
  8.     string str1="abc";
  9.     string str2="狗咬豬";
  10.     int a=12;
  11.     float b=3.456;
  12.     ss<<str1<<str2<<a<<b<<"...";
  13.     cout<<ss.str()<<endl;
  14.     system("pause");
  15.     return 0;   
  16. }
複製代碼
法2
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<sstream>
  4. using namespace std;
  5. int main()
  6. {
  7.     stringstream ss;
  8.     string str1="abc";
  9.     string str2="狗咬豬";
  10.     int a=12;
  11.     float b=3.456;
  12.     ss<<str1<<str2<<a<<b<<"...";
  13.     string str;
  14.     ss>>str;
  15.     cout<<str<<endl;
  16.     system("pause");
  17.     return 0;
  18. }
複製代碼

作者: 陳宥霖    時間: 2023-5-20 14:51

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<sstream>
  4. using namespace std;

  5. int main()
  6. {
  7.     stringstream ss;
  8.     string str1="abc";
  9.     string str2="狗咬豬";
  10.     int a=12;
  11.     float b=3.456;
  12.    
  13.    
  14.     ss<<str1<<str2<<a<<b<<"...";
  15.     cout<<ss.str()<<endl;
  16.    
  17.     system("pause");
  18.     return 0;   
  19. }
複製代碼

作者: 宜儒    時間: 2023-5-20 14:53

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<sstream>
  4. using namespace std;
  5. int main()
  6. {
  7.         //變數型態 變數名稱
  8.         stringstream ss;
  9.         string str1="abc";
  10.         string str2="狗咬豬";
  11.         int a=12;
  12.         float b=3.456;
  13.         ss<<str1<<str2<<a<<b<<"...";     //將字串串連在一起
  14.         cout<<ss.str()<<endl;            //輸出串連後的字串
  15.        
  16.         system("pause");
  17.         return 0;
  18. }
複製代碼

作者: 翁川祐    時間: 2023-5-20 14:54

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<sstream>
  4. using namespace std;
  5. int main()
  6. {
  7.     stringstream ss;
  8.     string str1="abc";
  9.     string str2="狗咬豬";
  10.     int a=12;
  11.     float b=3.456;
  12.     ss<<str1<<str2<<a<<b<<".654321";
  13.     cout<<ss.str()<<endl;
  14.     system("pause");
  15.     return 0;   
  16. }
複製代碼

作者: 陳泓亦    時間: 2023-5-20 14:54

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<sstream>
  4. using namespace std;
  5. int main()
  6. {
  7.     stringstream ss;
  8.     string str1="abc";
  9.     string str2="狗咬豬";
  10.     int a=12;
  11.     float b=3.456;
  12.     ss<<str1<<str2<<a<<b<<"...";
  13.     cout<<ss.str()<<endl;
  14.     system("pause");
  15.     return 0;   
  16. }
複製代碼

作者: 吳俊頡    時間: 2023-5-20 14:54

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<sstream>
  4. using namespace std;
  5. int main()
  6. {
  7.     stringstream ss;
  8.     string str1="abc";
  9.     string str2="狗咬豬";
  10.     int a=12;
  11.     float b=3.456;
  12.     ss<<str1<<str2<<a<<b<<"...";
  13.     cout<<ss.str()<<endl;
  14.    
  15.     system("pause");
  16.     return 0;   
  17. }
複製代碼

作者: 陳牧謙    時間: 2023-5-20 14:54

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<sstream>
  4. using namespace std;
  5. int main()
  6. {
  7.     stringstream ss;
  8.     string str1="abc";
  9.     string str2="狗咬豬";
  10.     int a=12;
  11.     float b=3.456;
  12.     ss<<str1<<str2<<a<<b<<"...";
  13.     string str;
  14.     ss>>str;
  15.     cout<<str<<endl;
  16.     system("pause");
  17.     return 0;
  18. }
複製代碼

作者: 徐啟祐    時間: 2023-5-20 14:55

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<sstream>
  4. using namespace std;
  5. int main()
  6. {
  7.     stringstream ss;
  8.     string str1="abc";
  9.     string str2="狗吃D";
  10.     int a=12;
  11.     float b=3.456;
  12.     ss<<str1<<str2<<a<<b<<"。";
  13.     cout<<ss.str()<<endl;
  14.     system("pause");
  15.     return 0;   
  16. }
複製代碼

作者: 黃品禎    時間: 2023-10-21 18:24

  1. #include<bits/stdc++.h>
  2. using namespace std;

  3. int main()
  4. {
  5.     cin.tie(0);
  6.     cin.sync_with_stdio(0);
  7.     string a="abc";
  8.     string b="狗咬豬";
  9.     int c=12;
  10.     float d=3.456;
  11.     string e="...";
  12.     stringstream ss;
  13.     ss<<a<<b<<c<<d<<e;
  14.     string str;
  15.     ss>>str;
  16.     cout<<str<<endl;
  17.     cout<<ss.str()<<endl;

  18.     return 0;
  19. }
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2