大水题Q2006

来源:互联网 发布:极光大数据 编辑:程序博客网 时间:2024/04/25 00:16

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

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

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

Sample Input
3 1 2 34 2 3 4 5
 

Sample Output
315


import java.util.Scanner;public class Q2006 {public static void main(String[] args){Scanner s = new Scanner(System.in);while(s.hasNext()){int n = s.nextInt();int a ;int p = 1;for(int i = 0; i < n ; i++){a = s.nextInt(); if(a%2 == 1){p *= a;}}System.out.println(p);}s.close();}}

没啥好说的


原创粉丝点击