Board logo

標題: 字串轉數字 [打印本頁]

作者: 鄭繼威    時間: 2024-1-10 03:55     標題: 字串轉數字

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

作者: 李宗儒    時間: 2024-1-15 18:28

此帖僅作者可見
作者: 張永學    時間: 2024-1-24 17:21

此帖僅作者可見




歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2