返回列表 發帖
  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. }
複製代碼

TOP

返回列表