Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

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
  
}
}

Explanation / Answer

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
Hire Me For All Your Tutoring Needs
Integrity-first tutoring: clear explanations, guidance, and feedback.
Drop an Email at
drjack9650@gmail.com
Chat Now And Get Quote