標題:
[作業] 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 編輯
#include<iostream>
#include<sstream>
#include<cstdlib>
using namespace std;
int main()
{
stringstream ss;
float a;
string str="123.456";
cout<<"字串型態: "<<str<<endl;
ss<<str;
ss>>a;
cout<<"浮點數型態: "<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
洪振庭
時間:
2016-1-11 21:31
#include<iostream>
#include<sstream>
#include<cstdlib>
using namespace std;
int main()
{
stringstream s;
float a;
string str="123.456";
cout<<"字串型: "<<str<<endl;
s<<str;
s>>a;
cout<<"點數型: "<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
梁和雋
時間:
2016-1-15 17:38
#include<iostream>
#include<sstream>
#include<cstdlib>
using namespace std;
int main()
{
stringstream ss;
float q;
string str="123.456";
cout<<"字串 "<<str<<endl;
ss<<str;
ss>>q;
cout<<"浮點數 "<<q<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2