随机产生数组元素值并找到数组最小值(个人笔记)

首先创建一个长度是5的数组
然后给数组的每一位赋予随机整数
通过for循环,遍历数组,找出最小的一个值出来
代码如下:
//1.声明一个整型数组
int[] a;
//2.创建一个长度为5的数组
a = new int[5];
//3.赋予每一个元组随机值
a[0]=(int) (Math.random() * 100);
a[1]=(int) (Math.random() * 100);
a[2]=(int) (Math.random() * 100);
a[3]=(int) (Math.random() * 100);
a[4]=(int) (Math.random() * 100);
//4.用for循环遍历数组
System.out.println(“随机数组数为”);
int temp=a[0];//中间交换值
for(int i=0;i System.out.println(a[i]);
//5.找出数组中的最小值
if(a[i] temp=a[i];
}
}
System.out.println(“数组中最小值为:”+temp);
}

运行截图如下:
随机产生数组元素值并找到数组最小值(个人笔记)_第1张图片

你可能感兴趣的:(最小数组值)