用C 语言来求奇数的乘积

Problem Description
给你n个整数,求他们中所有奇数的乘积。

Input
输入数据包含多个测试实例,每个测试实例占一行,每行的第一个数为n,表示本组数据一共有n个,接着是n个整数,你可以假设每组数据必定至少存在一个奇数。

Output
输出每组数中的所有奇数的乘积,对于测试实例,输出一行。

Sample Input
3 1 2 3
4 2 3 4 5

Sample Output
3
15

#include<bits/stdc++.h>
using namespace std;
int jiou(int s)
{
    if(s%2==0) return 0;
    else return 1;
}
int main()
{
    int a[3][1001],n;
    long long x[3]={1,1,1};
    for(int i=1;i<=2;i++)
    {
        cin>>n;
        for(int j=1;j<=n;j++)
        {
            cin>>a[i][j];
            if(jiou(a[i][j])) x[i]*=a[i][j];
        }
    }
    for(int i=1;i<=2;i++)
    {
        cout<<x[i]<<endl;
    }
    return 0;
 }