Having a difficult time writing this code up. ( JAVA based )Will Copy and paste the whole solution I was left with. Thank youin advance !
Lab 5 – Class Statistics
Write a program which will uses the fileLab5Data.txt containing student names and thepoints they had earned at the end of the class. The program shoulduse one or more arrays to create a report with the followinginformation:
-A table containing the student name, total points they earnedand the letter grade that would be given.
-The student with the highest score and the average pointsearned and average letter grade given
You may use single single dimension arrays, multi-dimensionarrays or both.
Capture screen output of your report and save asGradeReport.txt
(Optionally, you may add code to create this file usingjava; see note below)
Name your program Grade.java. Upload filesGrade.java, and GradeReport.txtto Canvas.
Note: the data files mentioned downloaded from the Canvas filesarea.
Refer to the files TipsForLab5.pdf, ReadData.txt,WriteData.txt for additional information that may beusefull in completing this lab.