使用数组查找最高数字

时间:2015-09-28 19:58:02

标签: java arrays for-loop int

所以我想更改这个以显示最高数字而不是数字列表中的所有列表。所以基本上我希望它找出该数字的位置然后打印出该数字是什么。

import java.util.*;
public class TwoArrays
{
  public static void main (String args [] )
  {
    Random r = new Random();
    int rangeMin = 0;
    int rangeMax = 50;

    ArrayList<Double> arrayList1 = new ArrayList<Double>();
    ArrayList<Double> arrayList2 = new ArrayList<Double>();

    for (int i =0;i<5;i++) 
    {
      double randomValue = rangeMin + (rangeMax - rangeMin) * r.nextDouble();
      arrayList1.add(randomValue); 
    }

    for (int i =0;i<5;i++)  
    {
      double randomValue = rangeMin + (rangeMax - rangeMin) * r.nextDouble();
      arrayList2.add(randomValue ); 
    }


    Double maxInArray1 = Collections.max(arrayList1);
    Double maxInArray2 = Collections.max(arrayList2);

    if (maxInArray1>maxInArray2)
    {  
      System.out.println("first array have max");
    }
    else  if(maxInArray1<maxInArray2)
    {
      System.out.println("second array have max");
    }
    else
    {
      System.out.println("the max of second and first array is identical");
    }
  }
}

1 个答案:

答案 0 :(得分:1)

尝试添加:

Double maxOfBoth = Math.max(maxInArray1, maxInArray2);

这会为您提供arrayList1arrayList2

之间的最大数字