返回列表 發帖

字串轉數字

我們可運用 stoi()stof()stod() 等函式將字串轉換為數字,及運用 to_string() 函式將數字轉換為字串。
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<string>
  4. using namespace std;
  5. int main()
  6. {
  7.     string str="123";
  8.     int a=stoi(str);    //字串轉整數
  9.     cout<<a<<endl;
  10.     //float b=stof(str);
  11.     //double c=stod(str);
  12.     string as=to_string(a);    //整數轉字串
  13.     cout<<as<<endl;
  14.     system("pause");
  15.     return 0;
  16. }
複製代碼

此帖僅作者可見

TOP

此帖僅作者可見

TOP

返回列表