Java程序设计 定义一个10个选区的整形数组,将每个元素任意赋值,求该数组的最小值和最大值
时间: 2024-10-23 16:04:40 浏览: 21
java-po-elections:该程序模拟了一个虚拟国家Byteland的议会选举。 此过程包括:选区组建,竞选活动,投票和使用三种不同方法将选票转换为议席
在Java程序设计中,你可以通过以下步骤来定义一个包含10个整数选区的数组,并找到它的最小值和最大值:
```java
import java.util.Arrays;
public class Main {
public static void main(String[] args) {
// 定义一个长度为10的整型数组
int[] electionDistricts = new int[10];
// 随机赋值给数组元素(这里为了演示,我们使用随机数)
for (int i = 0; i < electionDistricts.length; i++) {
electionDistricts[i] = (int)(Math.random() * 100); // 生成0到99之间的随机数
}
// 打印原始数组
System.out.println("原始数组: " + Arrays.toString(electionDistricts));
// 寻找最小值和最大值
int minValue = Arrays.stream(electionDistricts).min().getAsInt();
int maxValue = Arrays.stream(electionDistricts).max().getAsInt();
// 输出结果
System.out.println("最小值: " + minValue);
System.out.println("最大值: " + maxValue);
//
阅读全文