Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

Java Array Exercises: Compute the average value of an array of integers except the largest and smallest values

Java Array: Exercise-29 with Solution

Write a Java program to compute the average value of an array of integers except the largest and smallest values.

Pictorial Presentation:

Java Array Exercises: Compute the average value of an array of integers except the largest and smallest values

Sample Solution:

Java Code:

import java.util.*; 
import java.io.*; 
 public class Exercise29 {
 public static void main(String[] args)
 {
    int[] array_nums = {5, 7, 2, 4, 9};
	System.out.println("Original Array: "+Arrays.toString(array_nums)); 
	int max = array_nums[0];
	int min = array_nums[0];
	float sum = array_nums[0];
	for(int i = 1; i < array_nums.length; i++)
	{
		sum  += array_nums[i];
		if(array_nums[i] > max)
			max = array_nums[i];
		else if(array_nums[i] < min)
			min = array_nums[i];
	}
	float x = ((sum-max-min) / (array_nums.length - 2));
	System.out.printf("Compute the average value of an array of integers except the largest and smallest values: %.2f",x);
	System.out.print("\n");	
  }
}

Sample Output:

                                                                              
Original Array: [5, 7, 2, 4, 9]                                        
Compute the average value of an array of integers except the largest an
d smallest values: 5.33

Flowchart:

Flowchart: Java exercises: Compute the average value of an array of integers except the largest and smallest values

Visualize Java code execution (Python Tutor):


Java Code Editor:

Improve this sample solution and post your code through Disqus

Previous: Write a Java program to get the difference between the largest and smallest values in an array of integers.
Next: Write a Java program to check if an array of integers without 0 and -1.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Java: Tips of the Day

How to sort an ArrayList?

Collections.sort(testList);
Collections.reverse(testList);

That will do what you want. Remember to import Collections though!

Ref: https://bit.ly/32urdSe