返回列表 發帖

int 與 string 的相互轉換

本帖最後由 tonyh 於 2020-5-29 14:55 編輯

試利用 stringstream 型別, 來進行 int 與 string 的相互轉換.


  1. #include<iostream>
  2. #include<sstream>
  3. #include<cstdlib>
  4. using namespace std;
  5. int main()
  6. {
  7.     stringstream ss;
  8.     int a=123;
  9.     string str;
  10.     cout<<"整數型態: "<<a<<endl;
  11.     ss<<a;
  12.     ss>>str;
  13.     cout<<"字串型態: "<<str<<endl;
  14.     system("pause");     
  15.     return 0;   
  16. }
複製代碼
  1. #include<iostream>
  2. #include<sstream>
  3. #include<cstdlib>
  4. using namespace std;
  5. int main()
  6. {
  7.     stringstream ss;
  8.     int a=123;
  9.     string str;
  10.     cout<<"整數型態: "<<a+456<<endl;
  11.     ss<<a;
  12.     ss>>str;
  13.     cout<<"字串型態: "<<str+"456"<<endl;
  14.     system("pause");     
  15.     return 0;   
  16. }
複製代碼
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

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

TOP

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

TOP

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

TOP

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

TOP

返回列表