Home  >  Article  >  Java  >  Java Example - Get the maximum and minimum value of an array

Java Example - Get the maximum and minimum value of an array

黄舟
黄舟Original
2017-02-18 10:08:181534browse

The following example demonstrates how to find the maximum and minimum values ​​in an array through the Collection.max() and Collection.min() methods of the Collection class:

/*
 author by w3cschool.cc
 文件名:Main.java
 */import java.util.Arrays;import java.util.Collections;public class Main {
   public static void main(String[] args) {
      Integer[] numbers = { 8, 2, 7, 1, 4, 9, 5};
      int min = (int) Collections.min(Arrays.asList(numbers));
      int max = (int) Collections.max(Arrays.asList(numbers));
      System.out.println("最小值: " + min);
      System.out.println("最大值: " + max);
   }}

The above code runs The output result is:

最小值: 1
最大值: 9

The above is the Java example - the content of obtaining the maximum and minimum values ​​​​of the array. For more related content, please pay attention to the PHP Chinese website (www.php.cn)!


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn