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

2006.求奇数的乘积

时间:2018-09-30 23:21:48      阅读:303      评论:0      收藏:0      [点我收藏+]

标签:color   round   for   i++   ret   一个   problem   otto   esc   

#include<stdio.h>

int main(){

         int n,a[10],i,sum=1;

         scanf("%d",&n);

         for(i=0;i<n;i++)

         scanf("%d",&a[i]);

         for(i=0;i<n;i++){

         if(a[i]%2!=0)

         sum*=a[i];}

         printf("%d",sum);

         return 0;

}

Problem Description
给你n个整数,求他们中所有奇数的乘积。
 

 

Input
输入数据包含多个测试实例,每个测试实例占一行,每行的第一个数为n,表示本组数据一共有n个,接着是n个整数,你可以假设每组数据必定至少存在一个奇数。
 

 

Output
输出每组数中的所有奇数的乘积,对于测试实例,输出一行。
 

 

Sample Input
3 1 2 3 4 2 3 4 5
 

 

Sample Output
3 15

2006.求奇数的乘积

标签:color   round   for   i++   ret   一个   problem   otto   esc   

原文地址:https://www.cnblogs.com/huoyuying/p/9733622.html

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