Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6819027
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T21:14:58+00:00 2026-05-26T21:14:58+00:00

So I am trying to calculate the average and sum of an array, however

  • 0

So I am trying to calculate the average and sum of an array, however I have to remove the highest and lowest values before I can calculate the avg/sum.

I have code to fill the array with random doubles, and then find the highest and lowest value.

What I am unsure about is if there is a way to subtract the highest and lowest values or if I have to copy the data from the array into a new one minus the highest and lowest values and then calc the avg/sum.

This is what I have so far. Forgive me if this is somewhat obvious but I am stumped, and still in an intro to java course.

Here is my code so far.

double [] contestantOne = new double[8];

for (int index=0; index < contestantOne.length; index++) {
    contestantOne [index] = (double) (Math.random()*9) + 1;
}

for (int index=0; index < contestantOne.length; index++) {
    System.out.println( contestantOne [index] + "\n");
}

double contestantOneHigh; contestantOneHigh = contestantOne[0];

for (int index=1; index <contestantOne.length; index++) {    
    if (contestantOne[index] > contestantOneHigh)
        contestantOneHigh = contestantOne[index];
}

System.out.print("The highest value in your array is" 
               + " " + contestantOneHigh);
System.out.println();
System.out.println();

double contestantOneLow; contestantOneLow = contestantOne[0];
for (int index=1; index<contestantOne.length; index++) {   

    if (contestantOne [index] < contestantOneLow)
        contestantOneLow = contestantOne[index];
}    

System.out.print("The lowest value in your array is"
               + " " + contestantOneLow);
System.out.println();
System.out.println();
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T21:14:59+00:00Added an answer on May 26, 2026 at 9:14 pm

    I don’t understand why you need to remove the high and low value from the array to get the average? The average should be the sum of all values divided by the total number of values:

    double sum = 0;
    for (int index=0; index < contestantOne.length; index++)
    {
        //If you really need to remove highest and lowest value
        if (contestantOne[index] != contestantOneLow && contestantOne[index] != contestantOneHigh)
            sum += contestantOne[i];
    }
    double avg = sum / (double)(contestantOne.length - 2);
    

    The problem with removing the values as done above, is if your array highs and lows aren’t unique (array[10, 13, 15, 3, 15, 3, 6] 15 = High, 3 = Low) then your average will be incorrect when you calculate it because it will ignore both 15s and 3s.

    I would suggest storing the index of high and index of low and using that instead.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to create a conditional sum, in order to calculate an average. The
I'm trying to calculate the average net price of a product. I have, in
I m trying to calculate sum of a list of records. I have 3
I'm trying to write an HQL query which will calculate an average rating for
I'm trying to wrap my head around the proper design to calculate an average
I'm trying to calculate TimeSpans between dates. I have no problem with this if
I'm trying to write this query, that would calculate the average value of all
I'm trying to calculate the Mean Difference average of a set of data. I
I'm trying to calculate the average of a student's marks: import java.util.Scanner; public class
I am trying to calculate exponential moving average on 15 day bars, but want

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.