#include <bits/stdc++.h> using namespace std; int i; int num_even = 0; int num_odd = 0; int main() { while(cin >> i) if (i % 2 == 0) num_even++; else num_odd += i; cout << num_even << endl << num_odd << endl; return 0; }
注册一个 DashOJ 通用账户,您就可以在我们提供的所有在线评测服务上提交代码、参与讨论。
使用您的 DashOJ 通用账户