標題:
int 與 string 的相互轉換
[打印本頁]
作者:
tonyh
時間:
2016-1-9 11:13
標題:
int 與 string 的相互轉換
本帖最後由 tonyh 於 2016-1-9 11:49 編輯
試利用 stringstream 型別, 來進行 int 與 string 的相互轉換.
[attach]1497[/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;
}
複製代碼
作者:
李知易
時間:
2016-1-9 11:22
#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;
}
複製代碼
作者:
李知易
時間:
2016-1-9 11:23
#include<iostream>
#include<sstream>
#include<cstdlib>
using namespace std;
int main()
{
stringstream ss;
int a=123;
string str;
cout<<"整數型態: "<<a+321<<endl;
ss<<a;
ss>>str;
cout<<"字串型態: "<<str+"321"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
洪振庭
時間:
2016-1-9 11:25
#include<iostream>
#include<sstream>
#include<cstdlib>
using namespace std;
int main()
{
stringstream ss;
int a=123;
string str;
cout<<endl;
cout<<"整數型: "<<a<<endl;
ss<<a;
ss>>str;
cout<<"字串型: "<<str<<endl;
system("pause");
return 0;
}
複製代碼
作者:
梁和雋
時間:
2016-1-15 17:31
#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;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2