Problem Description
给你n个整数,求他们中所有奇数的乘积。
Input
输入数据包含多个测试实例,每个测试实例占一行,每行的第一个数为n,表示本组数据一共有n个,接着是n个整数,你可以假设每组数据必定至少存在一个奇数。
Output
输出每组数中的所有奇数的乘积,对于测试实例,输出一行。
- import java.util.Scanner;
-
- public class Main{
- public static void main(String[] args) {
- Scanner sc = new Scanner(System.in);
- int x=1;
- while (sc.hasNext()) {
- int n=sc.nextInt();
- for (int i = 0; i
- int test=sc.nextInt();
- if(test%2!=0){
- x*=test;
- }
- }
- System.out.println(x);
- x=1;
- }
- }
- }