- #include<iostream>
- #include<sstream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- stringstream ss;
- string str1="hello";
- string str2="world";
- string str3;
- ss<<str1<<str2<<"~~~~!!!";
- ss>>str3;
- cout<<str3<<endl;
- system("pause");
- return 0;
- }
複製代碼- #include<iostream>
- #include<sstream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- stringstream ss;
- string str1="hello";
- string str2="world";
- ss<<str1<<str2<<"~~~~!!!";
- cout<<ss.str()<<endl;
- system("pause");
- return 0;
- }
複製代碼 |