hdu 2006

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了hdu 2006相关的知识,希望对你有一定的参考价值。

  http://acm.hdu.edu.cn/showproblem.php?pid=2006

 1 #include<iostream>
 2 #include<stdio.h>
 3 #include<math.h>
 4 #include<queue>
 5 #include<stack>
 6 #include<algorithm>
 7 #define PI 3.1415927
 8 using namespace std;
 9 
10 int main()
11 {
12     int a[20],n,i,sum;
13     while(~scanf("%d",&n))
14     {
15         sum=1;
16         for(i=0;i<n;i++)
17         {
18             scanf("%d",&a[i]);
19             if(a[i]%2!=0)
20             {
21                 sum*=a[i];
22             }
23         }
24         printf("%d\n",sum);
25     }
26 
27     return 0;
28 }

 

以上是关于hdu 2006的主要内容,如果未能解决你的问题,请参考以下文章

hdu 2006

HDU 2006 求奇数的乘积

hdu 2006

HDU2006 求奇数的乘积入门+序列处理

调用 onCreateView() 之前出现“找不到片段 id 的视图”错误

HDU4057 Rescue the Rabbit(AC自动机+状压DP)