Q:

Write a Java program to find the largest element between first, last, and middle values from an array of integers (even length)

0

Write a Java program to find the largest element between first, last, and middle values from an array of integers (even length) 


Sample Output:

Original Array: [20, 30, 40, 50, 67]                                   
Largest element between first, last, and middle values: 67 

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

import java.util.Arrays; 
 public class Exercise82 {
 public static void main(String[] args)
 {
    int[] array_nums = {20, 30, 40, 50, 67};
	System.out.println("Original Array: "+Arrays.toString(array_nums)); 
	int max_val = array_nums[0];
	if(max_val <= array_nums[array_nums.length-1])
		max_val = array_nums[array_nums.length-1];
	if(max_val <= array_nums[array_nums.length/2])
		max_val = array_nums[array_nums.length/2];
	System.out.println("Largest element between first, last, and middle values: "+max_val);  
 }
}

Sample Output:

Original Array: [20, 30, 40, 50, 67]                                   
Largest element between first, last, and middle values: 67 

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now