- #include<iostream>
- #include<cstdlib>
- #include<sstream>
- using namespace std;
- int main()
- {
- stringstream ss;
- string str1="abc";
- string str2="狗咬豬";
- int a=12;
- float b=3.456;
- ss<<str1<<str2<<a<<b<<"...";
- string str;
- ss>>str;
- cout<<str<<endl;
- system("pause");
- return 0;
- }[code]
複製代碼 #include<iostream>
#include<cstdlib>
#include<sstream>
using namespace std;
int main()
{
stringstream ss;
string str1="tydtytydjhjkhkguyfvbjhcjc";
string str2="狗咬豬";
int a=12;
float b=3.456;
ss<<str1<<str2<<a<<b<<"...";
cout<<ss.str()<<endl;
system("pause");
return 0;
}[/code] |