输入数据包含多个测试实例,每个测试实例占一行,每行的第一个数为 n,表示本组
数据一共有n个,接着是n个整数,你可以假设每组数据必定至少存在一个奇数。
输出每组数中的所有奇数的乘积,对于测试实例,输出一行。
例如,输入:3 1 2 3
4 2 3 4 5
输出:3
15
#include<bits/stdc++.h>
using namespace std;
int main()
{
int n;
while(cin >> n)
{
int count = 0;
int x , chengji = 1;
for(int i = 1; i <= n; i ++)
{
cin >> x;
if(x % 2 != 0)
chengji *= x;
}
cout << "chengji is:" << chengji << endl;
}
return 0;
}