Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

For Java: Grading Schema: In a separate function, you will implement a grading schema. Write a program that reads a students name together with his

For Java:

Grading Schema: In a separate function, you will implement a grading schema. Write a program that reads a students name together with his or her test score from a file given by the user. The first two values in the file will represent the number of students followed by the number of tests. The program should then compute the average test score for each student and assign the appropriate grade (A, B, C, D, E or F) as well as the average of each test. Your program must perform the following functions. a) A void function calculateAverage, to determine the average of the test scores for each student. b) A value-returning function, calculateGrade, to determine and return each students grade letter. c) A void function calculateTestAvg that calculates the average of all tests and overall average of students. d) A void function printGrades that prints the grades values, average marks and grade letter followed by the average of all tests and students.

Output:

image text in transcribed

This is what I have so far:

package readwritetofile;

import java.io.BufferedReader; import java.io.FileReader; import java.io.IOException; import java.util.ArrayList; /** * * @author Jarvis */ public class Grades {

private static final String FILENAME2 = "/Users/Jarvis/Documents/Students.txt"; public static void main(String[] args) { BufferedReader br = null; FileReader fr = null; String students [] = new String[10]; int [][] grades = new int [10][5]; String[] words; String sCurrentLine; int counter=0; int [] tests = new int [10]; System.out.printf("Students\tTest1\tTest2\tTest3\tTest4\ttest5\tAverage ");

try {

fr = new FileReader(FILENAME2); br = new BufferedReader(fr);

br = new BufferedReader(new FileReader(FILENAME2)); while ((sCurrentLine = br.readLine()) != null) { words = sCurrentLine.split(" "); students[counter]=words[0]; System.out.printf(students[0]+ " ");

for (int i=1; i

} //end of outer for loop

} // end of while loop } catch (IOException e) {

e.printStackTrace();

} // end of catch counter++; }//end of main public static void calculateAverage (int [] grades){ ArrayList averageGrades = new ArrayList(); int sum = 0; for (int i=0; i

sum += grades[i]; // Divides the sum of the numbers by the number of grades averageGrades.add((sum/(double)grades.length));

} // end of inner for loop for(int j = 0; j =0 && grade = 60 && grade =70 && grade =80 && grade =90 && grade

} // end of calculateGrade method public static void calculateTestAverage (int students [][]){ int sumTotal = 0; for (int i=0; i

} // end of method printGrades

} // end of grades

output Assignment2 (run) test1 test2 test3 test4 test5 Avg grade 91 67 84 50 69 72 tom. 74 78 58 62 64 67 Suzy Peter 55 95 81 77 61 73 Paul. 91 95 92 77 86 88 Diane 91 54 52 53 92 68 Emily 82 71 66 68 95 76 Natalie 97 76 71 88 69 80 Ben 62 67 99 85 94 81 ark 53 61 72 83 73 68 Anna 64 91 61 53 68 67 test AVG: 76 75 73 69 77 74 BUILD SUCCESSFUL (total time: 0 seconds

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database And Expert Systems Applications 33rd International Conference Dexa 2022 Vienna Austria August 22 24 2022 Proceedings Part 1 Lncs 13426

Authors: Christine Strauss ,Alfredo Cuzzocrea ,Gabriele Kotsis ,A Min Tjoa ,Ismail Khalil

1st Edition

3031124227, 978-3031124228

More Books

Students also viewed these Databases questions

Question

outline some of the current issues facing HR managers

Answered: 1 week ago

Question

6. What questions would you suggest should be included?

Answered: 1 week ago