標題:
stringstream 字串串流 (一)
[打印本頁]
作者:
王瑞喻
時間:
2020-8-28 15:26
標題:
stringstream 字串串流 (一)
試利用 stringstream 型別,將多個字串串起來,
再利用 str() 函式將物件中的字串帶出來。
#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<<"...";
cout<<ss.str()<<endl;
system("pause");
return 0;
}
複製代碼
#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;
}
複製代碼
作者:
張淯祺
時間:
2020-8-29 11:49
#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<<"...";
cout<<ss.str()<<endl;
system("pause");
return 0;
}
複製代碼
作者:
龔品誠
時間:
2020-8-29 11:49
本帖最後由 龔品誠 於 2020-8-29 11:54 編輯
#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;
}
複製代碼
#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<<"...";
cout<<ss.str()<<endl;
system("pause");
return 0;
}
複製代碼
作者:
王銘鴻
時間:
2020-8-29 11:51
#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<<"...";
cout<<ss.str()<<endl;
system("pause");
return 0;
}
複製代碼
作者:
朱閎聿
時間:
2020-8-29 11:51
#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<<"...";
cout<<ss.str()<<endl;
system("pause");
return 0;
}
複製代碼
作者:
張淯祺
時間:
2020-8-29 11:57
#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;
}
複製代碼
作者:
王銘鴻
時間:
2020-8-29 11:57
#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<<"...";
cout<<ss.str()<<endl;
string str;
ss>>str;
cout<<str<<endl;
system("pause");
return 0;
}
複製代碼
作者:
李穎俊
時間:
2020-9-5 09:59
#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<<"...";
cout<<ss.str()<<endl;
system("pause");
return 0;
}
複製代碼
#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;
}
複製代碼
作者:
林羿丞
時間:
2020-9-12 09:55
#include<iostream>
#include<cstdlib>
#include<sstream>
int main()
{
stringstream ss;
string str1="abc";
string str2="狗咬豬";
int a=12;
float b=3.456;
ss<<str1<<str2<<a<<b<<"..." ;
cout<<ss.str()<<endl;
system("pause");
return 0;
}
複製代碼
作者:
林羿丞
時間:
2020-9-12 09:57
#include<iostream>
#include<cstdlib>
#include<sstream>
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;
ss>>str;
cout<<str<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2