標題:
int 與 string 的相互轉換
[打印本頁]
作者:
tonyh
時間:
2017-9-9 13:58
標題:
int 與 string 的相互轉換
本帖最後由 tonyh 於 2020-5-29 14:55 編輯
試利用 stringstream 型別, 來進行 int 與 string 的相互轉換.
[attach]8847[/attach]
#include<iostream>
#include<sstream>
#include<cstdlib>
using namespace std;
int main()
{
stringstream ss;
int a=123;
string str;
cout<<"整數型態: "<<a<<endl;
ss<<a;
ss>>str;
cout<<"字串型態: "<<str<<endl;
system("pause");
return 0;
}
複製代碼
#include<iostream>
#include<sstream>
#include<cstdlib>
using namespace std;
int main()
{
stringstream ss;
int a=123;
string str;
cout<<"整數型態: "<<a+456<<endl;
ss<<a;
ss>>str;
cout<<"字串型態: "<<str+"456"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
蕭澧邦
時間:
2017-9-9 14:12
#include<iostream>
#include<sstream>
#include<cstdlib>
using namespace std;
int main()
{
stringstream ss;
int a=123;
string str;
cout<<"整數型態: "<<a<<endl;
ss<<a;
ss>>str;
cout<<"字串型態: "<<str<<endl;
system("pause");
return 0;
}
複製代碼
作者:
譚暐霖
時間:
2017-9-9 14:15
#include<iostream>
#include<sstream>
#include<cstdlib>
using namespace std;
int main()
{
stringstream ss;
int a=123;
string str;
cout<<"整數型態: "<<a<<endl;
ss<<a;
ss>>str;
cout<<"字串型態: "<<str<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃宥鈞
時間:
2017-9-9 14:24
#include<iostream>
#include<sstream>
#include<cstdlib>
using namespace std;
int main()
{
stringstream ss;
int a=123;
string str;
cout<<"整數型態: "<<a<<endl;
ss<<a;
ss>>str;
cout<<"字串型態: "<<str<<endl;
system("pause");
return 0;
}
複製代碼
作者:
蔡幸融
時間:
2017-9-16 11:18
#include<iostream>
#include<sstream>
#include<cstdlib>
using namespace std;
int main()
{
stringstream ss;
int a=123;
string str;
cout<<"整數型態: "<<a<<endl;
ss<<a;
ss>>str;
cout<<"字串型態: "<<str<<endl;
system("pause");
return 0;
}
複製代碼
#include<iostream>
#include<sstream>
#include<cstdlib>
using namespace std;
int main()
{
stringstream ss;
int a=123;
string str;
cout<<"整數型態: "<<a+456<<endl;
ss<<a;
ss>>str;
cout<<"字串型態: "<<str+"456"<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2