当前位置:   article > 正文

YT之新生初试锋芒1001

YT之新生初试锋芒1001

代码:

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

 

 

转载于:https://www.cnblogs.com/hwh1239139516/p/3558097.html

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/代码探险家/article/detail/966952
推荐阅读
相关标签
  

闽ICP备14008679号