码迷,mamicode.com
首页 > 编程语言 > 详细

hdu2006 求奇数的乘积【C++】

时间:2018-07-10 14:41:04      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:tput   other   color   假设   iss   NPU   BMI   bottom   ted   

求奇数的乘积

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 114710    Accepted Submission(s): 69944


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

 

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

 

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

 

Sample Input
3 1 2 3 4 2 3 4 5
 

 

Sample Output
3 15
 1 #include<cstdio>
 2 using namespace std;
 3 int main()
 4 {
 5     int n;
 6 
 7     while(scanf("%d",&n)!=EOF)
 8     {
 9         int x;
10         long long result = 1;
11         while(n--)
12         {
13             scanf("%d",&x);
14             if(x%2 !=0)
15             {
16                 result *= x;
17             }
18         }
19         printf("%ld\n",result);
20     }
21     return 0;
22 }

 

hdu2006 求奇数的乘积【C++】

标签:tput   other   color   假设   iss   NPU   BMI   bottom   ted   

原文地址:https://www.cnblogs.com/knmxx/p/9288602.html

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