本帖最後由 譚詩澐 於 2019-5-4 16:21 編輯
- #include<iostream>
- #include<sstream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- stringstream ss;
- string str1="hello";
- string str2="你好";
- ss<<str1<<str2<<"***;;;";
- cout<<ss.str()<<endl;
- system("pause");
- return 0;
- }
複製代碼- #include<iostream>
- #include<sstream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- stringstream ss;
- string str1="abcdefg";
- string str2="ㄅㄆㄇㄈ";
- string str;
- ss<<str1<<str2<<"...";
- ss>>str;
- cout<<str<<endl;
- system("pause");
- return 0;
- }
複製代碼 |