返回列表 發帖

[作業] float 與 string 的相互轉換

本帖最後由 tonyh 於 2016-1-9 11:49 編輯

承上題, 運用相同手法將字串 (string) 型態的 123.456 轉換為浮點數 (float).

附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

本帖最後由 李知易 於 2016-1-9 12:04 編輯
  1. #include<iostream>
  2. #include<sstream>
  3. #include<cstdlib>
  4. using namespace std;
  5. int main()
  6. {
  7.     stringstream ss;
  8.     float a;
  9.     string str="123.456";
  10.     cout<<"字串型態: "<<str<<endl;
  11.     ss<<str;
  12.     ss>>a;
  13.     cout<<"浮點數型態: "<<a<<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 s;
  8.     float a;
  9.     string str="123.456";
  10.     cout<<"字串型: "<<str<<endl;
  11.     s<<str;
  12.     s>>a;
  13.     cout<<"點數型: "<<a<<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.     float q;
  9.     string str="123.456";
  10.     cout<<"字串 "<<str<<endl;
  11.     ss<<str;
  12.     ss>>q;
  13.     cout<<"浮點數 "<<q<<endl;
  14.     system("pause");     
  15.     return 0;   
  16. }
複製代碼
http://fs-old.mis.kuas.edu.tw/~s1102137106/music/

TOP

返回列表