2006 ACM 求奇数的和

题目:http://acm.hdu.edu.cn/showproblem.php?pid=2006
注意 sum=1,写在while 不然每次结果会累积

#include <stdio.h>
int main ()
{
int n,arr,cot=0,sum;
while(scanf("%d",&n)!=EOF)
{
sum=1;
for(int i=0;i<n;i++)
{
scanf("%d",&arr);
if(arr%2)
sum*=arr;
}
printf("%d\n",sum);
}
}
上一篇:POJ2774 Long Long Message —— 后缀数组 两字符串的最长公共子串


下一篇:蓝桥杯 历届试题 九宫重排 (bfs+康托展开去重优化)