- #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;
- }
複製代碼 |