1.集合獲得最大最小值
import java.util.Arrays;
import java.util.Collections;
public class Main {
public static void main(String[] args) {
List<Integer> list = new ArrayList<>();
list.add(1);
list.add(5);
list.add(3);
list.add(2);
int min = Collections.min(list);
int max = Collections.max(list);
System.out.println("最小值: " + min);
System.out.println("最大值: " + max);
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
2.陣列獲得最大最小值
import java.util.Arrays
public static int Max(int[] arr) {
return Arrays.stream(arr).max().getAsInt();
1.集合獲得最大最小值
import java.util.Arrays;
import java.util.Collections;
public class Main {
public static void main(String[] args) {
List<Integer> list = new ArrayList<>();
list.add(1);
list.add(5);
list.add(3);
list.add(2);
int min = Collections.min(list);
int max = Collections.max(list);
System.out.println("最小值: " + min);
System.out.println("最大值: " + max);
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
2.陣列獲得最大最小值
import java.util.Arrays
public static int Max(int[] arr) {
return Arrays.stream(arr).max().getAsInt();
}