返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<sstream>
  4. using namespace std;
  5. int main()
  6. {
  7.     stringstream ss;
  8.     string n="123";
  9.     int x;
  10.     ss<<n;
  11.     ss>>x;
  12.     cout<<"整數型態:"<<x<<endl;
  13.     cout<<"字串型態:"<<n<<endl;
  14.     system("pause");
  15.     return 0;
  16. }
複製代碼
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<sstream>
  4. using namespace std;
  5. int main()
  6. {
  7.     stringstream ss;
  8.     string n;
  9.     int x=123;
  10.     ss<<x;
  11.     ss>>n;
  12.     cout<<"整數型態:"<<x<<endl;
  13.     cout<<"字串型態:"<<n<<endl;
  14.     system("pause");
  15.     return 0;
  16. }
複製代碼

TOP

返回列表