標題:
字串轉數字
[打印本頁]
作者:
鄭繼威
時間:
2024-1-10 03:55
標題:
字串轉數字
我們可運用
stoi()
、
stof()
、
stod()
等函式將字串轉換為數字,及運用
to_string()
函式將數字轉換為字串。
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
string str="123";
int a=stoi(str); //字串轉整數
cout<<a<<endl;
//float b=stof(str);
//double c=stod(str);
string as=to_string(a); //整數轉字串
cout<<as<<endl;
system("pause");
return 0;
}
複製代碼
作者:
李宗儒
時間:
2024-1-15 18:28
此帖僅作者可見
作者:
張永學
時間:
2024-1-24 17:21
此帖僅作者可見
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2