#include<iostream>
#include<sstream>
#include<string>
using namespace std;
int main ()
{
stringstream ss,sn;
int i;
string s;
while(getline(cin,s))
{
int tol=0;
ss.clear();ss.str("");
ss<<s;
string x;
while(ss>>x)
{
bool flag=true;
for(i=0; i<x.size(); i++)
{
if(isalpha(x[i]))
{
flag=false;
break;
}
}
if(flag==true)
{
sn.clear();sn.str("");
int a;
sn<<x;sn>>a;
tol+=a;
}
}
cout<<tol<<endl;
}
}
程式碼如上,但是有幾題一直不能AC經過我的測試後是35 49 69這三題,其他的題數都是對的 不曉得有沒有哪位大大能替我解惑一下,非常感謝。