本帖最後由 蔡季庭 於 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;
- }
複製代碼 |