4 条题解

  • 0
    @ 2024-12-12 23:33:36
    #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;
    }
    

    信息

    ID
    9
    时间
    1000ms
    内存
    256MiB
    难度
    3
    标签
    递交数
    929
    已通过
    473
    上传者