JAVA PROGRAM   Chapter 4. Homework Assignment (read instructions carefully) Write a program that asks the user for the name of a file. The program should read all the numbers from the given file and display the total and average of all numbers in the following format (three decimal digits): Total: nnnnn.nnn Average: nnnnn.nnn Class name: FileTotalAndAverage   double_input1.txt double_input2.txt   PLEASE MODIFY THIS CODE, SO WHEN I UPLOAD IT TO HYPERGRADE IT PASSES ALL THE TEST CASES, BECAUSE WHEN I UPLOAD IT TO HYPERGRADE IT DOES NOT PASS THE TEST CASES. IT HAS TO PASS ALL THE TEST CASES. I PROVIDED THE CORRECT OUTPUT AS A SCREENSHOT AS A REFERRENCE.    import java.io.BufferedReader; import java.io.FileReader; import java.io.IOException; import java.util.InputMismatchException; import java.util.Scanner; public class FileTotalAndAverage {     public static void main(String[] args) {         Scanner scanner = new Scanner(System.in);         String fileName;         do {             System.out.print("Please enter the file name: ");             fileName = scanner.nextLine();             try {                 double[] numbers = readNumbersFromFile(fileName);                 if (numbers != null) {                     double total = calculateTotal(numbers);                     double average = calculateAverage(numbers);                     System.out.printf("Total: %.3f\n", total);                     System.out.printf("Average: %.3f\n", average);                     break;  // Exit the loop if successful                 }             } catch (IOException e) {                 System.out.println("File '" + fileName + "' does not exist.");             } catch (InputMismatchException e) {                 System.out.println("Invalid data in the file. Please make sure the file contains only numeric values.");             }         } while (true);         scanner.close();     }     private static double[] readNumbersFromFile(String fileName) throws IOException {         BufferedReader reader = new BufferedReader(new FileReader(fileName));         String line;         double[] numbers = null;         try {             String[] tokens = reader.readLine().split("\\s+");             numbers = new double[tokens.length];             for (int i = 0; i < tokens.length; i++) {                 numbers[i] = Double.parseDouble(tokens[i]);             }         } finally {             reader.close();         }         return numbers;     }     private static double calculateTotal(double[] numbers) {         double total = 0;         for (double num : numbers) {             total += num;         }         return total;     }     private static double calculateAverage(double[] numbers) {         double total = calculateTotal(numbers);         return total / numbers.length;     } } Test Case 1       Please enter the file name: \n double_input1.txtENTER Total: -5,748.583\n Average: -57.486\n   Test Case 2       Please enter the file name: \n double_input2.txtENTER Total: 112,546.485\n Average: 56.273\n   Test Case 3       Please enter the file name: \n double_input3.txtENTER File 'double_input3.txt' does not exist.\n Please enter the file name again: \n double_input1.txtENTER Total: -5,748.583\n Average: -57.486\n

Programming with Microsoft Visual Basic 2017
8th Edition
ISBN:9781337102124
Author:Diane Zak
Publisher:Diane Zak
Chapter9: Sequential Access Files And Menus
Section: Chapter Questions
Problem 11E
icon
Related questions
Question
JAVA PROGRAM
 
Chapter 4. Homework Assignment (read instructions carefully)
Write a program that asks the user for the name of a file. The program should read all the numbers from the given file and display the total and average of all numbers in the following format (three decimal digits):
Total: nnnnn.nnn
Average: nnnnn.nnn
Class name: FileTotalAndAverage
 
double_input1.txt double_input2.txt
 
PLEASE MODIFY THIS CODE, SO WHEN I UPLOAD IT TO HYPERGRADE IT PASSES ALL THE TEST CASES, BECAUSE WHEN I UPLOAD IT TO HYPERGRADE IT DOES NOT PASS THE TEST CASES. IT HAS TO PASS ALL THE TEST CASES. I PROVIDED THE CORRECT OUTPUT AS A SCREENSHOT AS A REFERRENCE
 

import java.io.BufferedReader;
import java.io.FileReader;
import java.io.IOException;
import java.util.InputMismatchException;
import java.util.Scanner;

public class FileTotalAndAverage {
    public static void main(String[] args) {
        Scanner scanner = new Scanner(System.in);
        String fileName;

        do {
            System.out.print("Please enter the file name: ");
            fileName = scanner.nextLine();

            try {
                double[] numbers = readNumbersFromFile(fileName);
                if (numbers != null) {
                    double total = calculateTotal(numbers);
                    double average = calculateAverage(numbers);

                    System.out.printf("Total: %.3f\n", total);
                    System.out.printf("Average: %.3f\n", average);
                    break;  // Exit the loop if successful
                }
            } catch (IOException e) {
                System.out.println("File '" + fileName + "' does not exist.");
            } catch (InputMismatchException e) {
                System.out.println("Invalid data in the file. Please make sure the file contains only numeric values.");
            }
        } while (true);

        scanner.close();
    }

    private static double[] readNumbersFromFile(String fileName) throws IOException {
        BufferedReader reader = new BufferedReader(new FileReader(fileName));
        String line;
        double[] numbers = null;

        try {
            String[] tokens = reader.readLine().split("\\s+");
            numbers = new double[tokens.length];

            for (int i = 0; i < tokens.length; i++) {
                numbers[i] = Double.parseDouble(tokens[i]);
            }
        } finally {
            reader.close();
        }

        return numbers;
    }

    private static double calculateTotal(double[] numbers) {
        double total = 0;
        for (double num : numbers) {
            total += num;
        }
        return total;
    }

    private static double calculateAverage(double[] numbers) {
        double total = calculateTotal(numbers);
        return total / numbers.length;
    }
}

Test Case 1

 
 
 
Please enter the file name: \n
double_input1.txtENTER
Total: -5,748.583\n
Average: -57.486\n
 

Test Case 2

 
 
 
Please enter the file name: \n
double_input2.txtENTER
Total: 112,546.485\n
Average: 56.273\n
 

Test Case 3

 
 
 
Please enter the file name: \n
double_input3.txtENTER
File 'double_input3.txt' does not exist.\n
Please enter the file name again: \n
double_input1.txtENTER
Total: -5,748.583\n
Average: -57.486\n

 

Test Case 1 Failed Show what's missing
Please enter the file name: double_input1.txt ENTER
Total: 783.236 \n
Average: 783.236\n
Test Case 2 Failed Show what's missing
Please enter the file name: double_input2.txt ENTER
Total: 7958.535 \n
Average: 7958.535 \n
Test Case 3 Failed Show what's missing
Please enter the file name: double_input3.txt ENTER
File 'double_input3.txt' does not exist.\n
Please enter the file name: double_input1.txt ENTER
Total: 783.236|\n
Average: 783.236\n
Transcribed Image Text:Test Case 1 Failed Show what's missing Please enter the file name: double_input1.txt ENTER Total: 783.236 \n Average: 783.236\n Test Case 2 Failed Show what's missing Please enter the file name: double_input2.txt ENTER Total: 7958.535 \n Average: 7958.535 \n Test Case 3 Failed Show what's missing Please enter the file name: double_input3.txt ENTER File 'double_input3.txt' does not exist.\n Please enter the file name: double_input1.txt ENTER Total: 783.236|\n Average: 783.236\n
Expert Solution
steps

Step by step

Solved in 3 steps with 2 images

Blurred answer
Knowledge Booster
File Input and Output Operations
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Programming with Microsoft Visual Basic 2017
Programming with Microsoft Visual Basic 2017
Computer Science
ISBN:
9781337102124
Author:
Diane Zak
Publisher:
Cengage Learning
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT
COMPREHENSIVE MICROSOFT OFFICE 365 EXCE
COMPREHENSIVE MICROSOFT OFFICE 365 EXCE
Computer Science
ISBN:
9780357392676
Author:
FREUND, Steven
Publisher:
CENGAGE L