2006 求奇数的乘积

Posted mered1th

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了2006 求奇数的乘积相关的知识,希望对你有一定的参考价值。

#include<iostream>
#include<vector>

using namespace std;

int main() {
    int n;
    while (cin >> n) {
        vector<int> t(n);
        int a;
        for (int i = 0;i < n;i++) {
            cin >> a;
            t.push_back(a);
        }
        int ans = 1;
        for (auto i : t) {
            if (i % 2 == 1) {
                ans *= i;
            }
        }
        cout << ans << endl;
    }
    return 0;
}

 

以上是关于2006 求奇数的乘积的主要内容,如果未能解决你的问题,请参考以下文章

HDU2006 求奇数的乘积入门+序列处理

杭电ACM2006--求奇数的乘积

2006.求奇数的乘积

2006 求奇数的乘积

ZZNUOJ_C语言1085:求奇数的乘积(多实例测试)(完整代码)

求奇数的乘积 题解