标签:
HDU 2007-10 Programming Contest_WarmUp
题目大意:求一个数各个位数上为偶数的和
思路:注意输出格式。。。
#include<iostream> #include<algorithm> using namespace std; int main() { int N,ok = 1; while(cin >> N) { if(ok == 1) ok = 0; else cout << endl; int ans = 0; while(N) { if(!(N&1)) ans += (N%10); N /= 10; } cout << ans << endl; } return 0; }
标签:
原文地址:http://blog.csdn.net/lianai911/article/details/43206291