#include<cstdio> #include<iostream> #include<cstring> using namespace std; int stoint(char s[]) { if(strlen(s)==1) return *s-'0'; if(strlen(s)==2) return (*s-'0')*10+*(s+1)-'0'; if(strlen(s)==3) return (*s-'0')*100+(*(s+1)-'0')*10+(*(s+2)-'0'); } int fac(int a,char ch,int b,char s[]) { int c; if(s[0]=='?') return 0; c=stoint(s); if(ch=='+') return a+b==c; else return a-b==c; } int main(void) { int sum=0,a,b; char ch,s[4]; while(scanf("%d%c%d=%s",&a,&ch,&b,s)!=EOF) sum+=fac(a,ch,b,s); cout << sum << endl; return 0; }
解题思路:
注意事项:
参考代码:
0.0分
3 人评分