L1-022 奇偶分家 分數 10

Frodnx發表於2024-08-01
// 1'45"
#include <iostream>
using namespace std;
int main()
{
    int n;
    cin >> n;
    int cnt1 = 0, cnt2 = 0;
    while(n --)
    {
        int tmp;
        cin >> tmp;
        if(tmp % 2 == 1) cnt1 ++;
        else cnt2 ++;
    }
    cout << cnt1 << " " << cnt2;
    return 0;
}

相關文章