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

TOP

TOP

TOP

返回列表