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

所有奇数的乘积

时间:2014-11-23 23:01:45      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:style   blog   io   color   sp   for   on   div   log   

#include<stdio.h>
int main ()
{

  #ifdef ONLINE_JUDGE
  #else
  freopen ("in.txt","r",stdin);
  #endif
  int n,i;

  while(scanf("%d",&n)!=EOF)
{   int a[n],s=1;
    for (i=0;i<n;++i)
    scanf("%d",&a[i]);
    for (i=0;i<n;++i)
    if(0!=a[i]%2)
        s*=a[i];
    printf("%d",s);
    printf("\n");
}
  return 0;
}

 

所有奇数的乘积

标签:style   blog   io   color   sp   for   on   div   log   

原文地址:http://www.cnblogs.com/lonelysky/p/4117520.html

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