Write a java method that finds the minimum of each array
Extracted text: public static void main(String[] args) { System.out.println("Testing section one!"); int [] a = {1, 2, 3}; method_minium (a); //output should be 1 int [] b = {1, 3, 2}; method_minium (b); int [] c = {2, 1, 3}; method_minium (c); int [] d = {2, 3, 1}; method_minium (d); int [] e = {3, 1, 2}; method_minium (e); int [] f = {3, 2, 1}; method_minium (f); }//end of main //write method definition here. DO NOT CHANGE THE METHOD main()
Already registered? Login
Not Account? Sign up
Enter your email address to reset your password
Back to Login? Click here