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

package week_2; import static input.InputUtils. doubleInput ; /** Write a loop t

ID: 3746167 • Letter: P

Question

 package week_2;  import static input.InputUtils.doubleInput;   /**     Write a loop that asks the user to enter 5 numbers.     The user should enter the numbers, one by one.       Use the doubleInput("enter a number") method.       Once the user has entered all the numbers,     calculate the total and the average value. */   public class Question_2_Add_5_Numbers {      public static void main(String[] args) {              // You don't need to modify the main method.              Question_2_Add_5_Numbers q2 = new Question_2_Add_5_Numbers();         double[] results = q2.getNumbersAndAnalyze();         System.out.println("The total is " + results[0]);         System.out.println("The average is " + results[1]);      }       public double[] getNumbersAndAnalyze() {          //TODO Ask user for 5 numbers, one by one              double total = 0;  // TODO Keep the total variable. Replace 0 with your result.         double average = 0;  // TODO Keep the average variable. Replace 0 with your result.          // Calculate total and average and save in the total and average variables.         // Write your code here...                                  // Don't modify this line         return new double[]{ total, average };     }  } 

Explanation / Answer

package week_2;

import static input.InputUtils.doubleInput;

public class Question_2_Add_5_Numbers {

public static void main(String[] args) {

Question_2_Add_5_Numbers q2 = new Question_2_Add_5_Numbers();

double[] results = q2.getNumbersAndAnalyze();

System.out.println("The total is " + results[0]);

System.out.println("The average is " + results[1]);

}

public double[] getNumbersAndAnalyze() {

double total = 0; // TODO Keep the total variable. Replace 0 with your result.

double average = 0; // TODO Keep the average variable. Replace 0 with your result.

for(int i=0; i<5; i++)

{

double value = doubleInput("enter a number");

total = total + value;

}

average = total / 5.0;

// Don't modify this line

return new double[]{ total, average };

}

}