本帖最後由 tonyh 於 2021-7-17 19:30 編輯
- #include<iostream>
- #include<cstdlib>
- #include<sstream>
- using namespace std;
- int main()
- {
- re:
- system("cls");
- string str, tmp="";
- int sum=0;
- cout<<"請輸入一個加法算式 (譬如 5+7+2): ";
- cin>>str;
- str+="+";
- for(int i=0; i<str.size(); i++)
- {
- if(str[i]=='+')
- {
- stringstream ss;
- ss<<tmp;
- int n;
- ss>>n;
- sum+=n;
- tmp="";
- }else
- {
- tmp+=str[i];
- }
- }
- cout<<sum<<endl<<endl;
- system("pause");
- goto re;
- return 0;
- }
複製代碼 |