• 杭电ACM2006求奇数的乘积


    求奇数的乘积

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

    Problem Description
    给你n个整数,求他们中所有奇数的乘积。
     
    Input
    输入数据包含多个测试实例,每个测试实例占一行,每行的第一个数为n,表示本组数据一共有n个,接着是n个整数,你可以假设每组数据必定至少存在一个奇数。
     
    Output
    输出每组数中的所有奇数的乘积,对于测试实例,输出一行。
     
    Sample Input
    3 1 2 3
    4 2 3 4 5
     
    Sample Output
    3
    15
     
     1 import java.util.Iterator;
     2 import java.util.List;
     3 import java.util.ArrayList;
     4 import java.util.Scanner;
     5 public class Main{
     6     public static void main(String[] args) {
     7         Scanner scan = new Scanner(System.in);
     8         List<Integer> list = new ArrayList<Integer>();
     9         int n;
    10         int sum = 1;
    11         int temp;
    12         while(scan.hasNextInt()){
    13             sum = 1;
    14             n = scan.nextInt();
    15             list.clear();
    16             for(int i=1;i<=n;i++)
    17                 list.add(scan.nextInt());
    18             Iterator<Integer> iter = list.iterator();
    19             while(iter.hasNext()){
    20                 temp = iter.next();
    21                 if(temp%2!=0)
    22                     sum *= temp;
    23             }
    24             System.out.println(sum);
    25         }
    26     }
    27 }
  • 相关阅读:
    nginx 优化
    linux 内核的优化
    Linux下如何查看版本
    oracle安装数据库中文乱码解决办法
    Python 5 行代码的神奇操作
    Python爬取网站上面的数据很简单,但是如何爬取APP上面的数据呢
    解放双手!用 Python 控制你的鼠标和键盘
    js混淆、eval解密
    ubuntu
    爬虫基本原理
  • 原文地址:https://www.cnblogs.com/bchxsx322/p/2467806.html
Copyright © 2020-2023  润新知