我們可運用 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;
- }
複製代碼 |