標題:
字串分割 (二)
[打印本頁]
作者:
王瑞喻
時間:
2020-12-9 17:48
標題:
字串分割 (二)
本帖最後由 王瑞喻 於 2020-12-9 17:54 編輯
本帖隱藏的內容需要回復才可以瀏覽
作者:
駱顗安
時間:
2020-12-23 17:30
本帖最後由 駱顗安 於 2020-12-23 17:39 編輯
#include<iostream>
#include<cstdlib>
#include<sstream>
#include<typeinfo>
using namespace std;
int main()
{
string str;
string res[50];
string tmp="";
int j=0,sum=0;
cout<<"請輸入一個加法算式:";
getline(cin,str);
for(int i=0; i<str.length(); i++)
{
if(str[i]=='+')
{
res[j]=tmp;
tmp="";
j++;
continue;
}
tmp+=str[i];
}
res[j]=tmp;
for(int i=0; res[i]!=""; i++)
{
stringstream ss;
int a;
ss<<res[i];
ss>>a;
sum=sum+a;
}
cout<<sum<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2