Board logo

標題: [作業] float 與 string 的相互轉換 [打印本頁]

作者: tonyh    時間: 2016-1-9 11:41     標題: [作業] float 與 string 的相互轉換

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

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

[attach]1498[/attach]
作者: 李知易    時間: 2016-1-9 11:49

本帖最後由 李知易 於 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. }
複製代碼

作者: 洪振庭    時間: 2016-1-11 21:31

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

作者: 梁和雋    時間: 2016-1-15 17:38

  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://seed.istak.org.tw/) Powered by Discuz! 7.2