返回列表 發帖

字串分割 (二)

本帖最後由 王瑞喻 於 2020-12-9 17:54 編輯



本帖隱藏的內容需要回復才可以瀏覽
Su Wa

本帖最後由 駱顗安 於 2020-12-23 17:39 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<sstream>
  4. #include<typeinfo>
  5. using namespace std;
  6. int main()
  7. {
  8.     string str;
  9.     string res[50];
  10.     string tmp="";
  11.     int j=0,sum=0;
  12.     cout<<"請輸入一個加法算式:";
  13.     getline(cin,str);
  14.     for(int i=0; i<str.length(); i++)
  15.     {
  16.         if(str[i]=='+')
  17.         {
  18.             res[j]=tmp;
  19.             tmp="";
  20.             j++;
  21.             continue;
  22.         }
  23.         tmp+=str[i];
  24.     }
  25.     res[j]=tmp;
  26.     for(int i=0; res[i]!=""; i++)
  27.     {
  28.         stringstream ss;
  29.         int a;
  30.         ss<<res[i];
  31.         ss>>a;
  32.         sum=sum+a;
  33.     }
  34.     cout<<sum<<endl;
  35.     system("pause");     
  36.     return 0;
  37. }
複製代碼

TOP

返回列表