標題:
int 與 string 的相互轉換
[打印本頁]
作者:
陳品肇
時間:
2019-5-4 15:31
標題:
int 與 string 的相互轉換
試利用 stringstream 型別, 來進行 int 與 string 的相互轉換.
#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;
}
複製代碼
作者:
蔡季庭
時間:
2019-5-4 16:46
本帖最後由 蔡季庭 於 2019-5-4 16:48 編輯
#include<iostream>
#include<sstream>
#include<cstdlib>
using namespace std;
int main()
{
stringstream ss;
int n=123;
string str;
cout<<"整數型態: "<<n+1<<endl;
ss<<n;
ss>>str;
cout<<"字串型態: "<<str<<endl;
system("pause");
return 0;
}
複製代碼
#include<iostream>
#include<sstream>
#include<cstdlib>
using namespace std;
int main()
{
stringstream ss;
int n=123;
string str;
cout<<"整數型態: "<<n+1<<endl;
ss<<n;
ss>>str;
cout<<"字串型態: "<<str<<endl;
system("pause");
return 0;
}
複製代碼
作者:
蔡依宸
時間:
2019-5-4 16:46
本帖最後由 蔡依宸 於 2019-5-4 16:49 編輯
#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;
}
複製代碼
作者:
陳柏霖
時間:
2019-5-4 16:47
#include<iostream>
#include<cstdlib>
#include<sstream>
using namespace std;
int main()
{
stringstream ss;
string n="123";
int x;
ss<<n;
ss>>x;
cout<<"整數型態:"<<x<<endl;
cout<<"字串型態:"<<n<<endl;
system("pause");
return 0;
}
複製代碼
#include<iostream>
#include<cstdlib>
#include<sstream>
using namespace std;
int main()
{
stringstream ss;
string n;
int x=123;
ss<<x;
ss>>n;
cout<<"整數型態:"<<x<<endl;
cout<<"字串型態:"<<n<<endl;
system("pause");
return 0;
}
複製代碼
作者:
戴唯陞
時間:
2019-5-4 16:48
#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;
}
複製代碼
作者:
譚詩澐
時間:
2019-5-4 16:49
#include<iostream>
#include<sstream>
#include<cstdlib>
using namespace std;
int main()
{
stringstream ss;
int a=5678;
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=45678;
string str;
cout<<"整數型態: "<<a+90<<endl;
ss<<a;
ss>>str;
cout<<"字串型態: "<<str+"90"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
戴偉宸
時間:
2019-5-4 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;
}
複製代碼
#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;
}
複製代碼
作者:
戴安利
時間:
2019-5-10 20:10
本帖最後由 戴安利 於 2019-5-10 20:20 編輯
#include<iostream>
#include<cstdlib>
#include<sstream>
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<cstdlib>
#include<sstream>
using namespace std;
int main()
{
stringstream ss;
int a=123;
string str;
cout<<"整數型態: "<<a<<endl;
ss<<a;
ss>>str;
cout<<"字串型態: "<<str+"456"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
蔡季庭
時間:
2019-7-13 16:31
https://krunker.io/?game=SIN:r83f9
作者:
蔡季庭
時間:
2019-7-27 16:01
https://krunker.io/?game=TOK:jn4p3
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2