码迷,mamicode.com
首页 > 其他好文 > 详细

hdu 2006

时间:2017-09-02 12:15:04      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:turn   stdio.h   int   print   names   main   algorithm   scan   style   

  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

标签:turn   stdio.h   int   print   names   main   algorithm   scan   style   

原文地址:http://www.cnblogs.com/hhkobeww/p/7466155.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!