HDU 2006 求奇数的乘积

来源:互联网 发布:linux怎么解压tgz文件 编辑:程序博客网 时间:2024/05/16 07:27

求奇数的乘积

题目:

Problem Description:

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

Input

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

Output

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

Sample Input

3 1 2 3
4 2 3 4 5

Sample Output

3
15

代码:

#include <stdio.h>#include <stdlib.h>int main(){    int n,shu,res;    while(scanf("%d",&n)!=EOF)    {        res=1;        for(int i=1;i<=n;i++)        {            scanf("%d",&shu);            if(shu%2==1)            {                 res *=shu;            }        }        printf("%d\n",res);    }    return 0;}

问题与建议

  • 微博:@妥妥
  • 邮箱:iyatuo@gmail.com
0 0
原创粉丝点击