#include<stdio.h> #include<string.h> int main() { int sum,i,t=0; char s[10000]; while(scanf("%s",s)!=EOF) { sum=0; if(t) printf("\n"); for(i=0;s[i]!='\0';i++) if((s[i]-48)%2==0) sum+=s[i]-48; printf("%d\n",sum); t++; } return 0; }
http://acm.hdu.edu.cn/showproblem.php?pid=2113
没什么难度,就是有一个输出格式上的小技巧,和那行输出的空行放在前面就好了