求奇数的乘积
给你n个整数,求他们中所有奇数的乘积。
Input
输入数据包含多个测试实例,每个测试实例占一行,每行的第一个数为n,表示本组数据一共有n个,接着是n个整数,你可以假设每组数据必定至少存在一个奇数。
Output
输出每组数中的所有奇数的乘积,对于测试实例,输出一行。
Sample Input
3 1 2 3 4 2 3 4 5
Sample Output
3 15
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
#include<iostream> #include<iomanip> #include<string> #include<cstdio> using namespace std; int main() {int n,m,k; while(cin >>n) { k=1; while(n--) { cin>>m; if(m%2==1) k*=m; } cout<<k<<endl; } return 0; } |