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 求奇数的乘积的主要内容,如果未能解决你的问题,请参考以下文章