11 条题解

  • 2
    @ 2024-12-12 22:53:04
    #include <bits/stdc++.h>
    
    using namespace std;
    
    int i; // 输入的数
    int num_even = 0; // 偶数计数
    int num_odd = 0; // 奇数求和
    
    int main() {
        while (cin >> i && i) // 判断输入为 0 则结束
            if (i % 2 == 0) // 判断奇偶
                num_even++; // 偶数
            else
                num_odd += i; // 奇数
        cout << num_even << endl << num_odd << endl; // 输出
        return 0;
    }
    

    信息

    ID
    8
    时间
    1000ms
    内存
    256MiB
    难度
    5
    标签
    递交数
    1606
    已通过
    617
    上传者