Complete the JAVA code below to print out the minimum value of the created array
ID: 3914452 • Letter: C
Question
Complete the JAVA code below to print out the minimum value of the created array of random values.
Starter Code:
import java.util.*; //import Scanner, Random, and Arrays classes
public class Minimum {
public static void main(String[] args) {
//create a Scanner to get the seed for the random number generator
Scanner scnr = new Scanner(System.in);
int seed = scnr.nextInt();
Random rand = new Random(seed);
//create an array of random integers (1-100)
//the length of the array will also be randomly determined (also 1-100)
int[] arr = new int[rand.nextInt(100)+1];
for (int i=0; i<arr.length; i++) {
arr[i] = rand.nextInt(100)+1;
}
System.out.println(Arrays.toString(arr));
//TODO: print out the minimum value of the array, arr
}
}