Question: requires you to read data from a text file, perform some calculations in Java no Array and then output the read and calculated to the
requires you to read data from a text file, perform some calculations in Java no Array and then output the read and calculated to the screen.
we should not use any array to implement this class. 


Attached Files: students.txt (1.271 KB) Assignment #3 requires you to read data from a text file, perform some calculations on that data, and then output the read and calculated data to the screen. Here are the requirements: Name your source code "Assignment3.java" Have your program output your first and last name . Email me your "Assignment3.java" file as an attachment before class begins on 2/9. I don't need your class file or your "students.txt" file Read in the data from the attached file, "students.txt". Each line in this file contains information about a student: o Last Name e First Name Athlete Flag ("Y" means this student is an athlete, "N" means they are not an athlete) o Grade 1 o Grade 2 e Grade 3 Note: Your program can assume that "students.txt" is in the same directory as your Assignment3.class file. If you are using Eclipse, put the "students.txt" file in the project's folder [not the src folder] Your program needs to calculate the following for each student: Score-the average of Grade 1, Grade 2, and Grade 3. Remember that average is the sum divided by the count of items. In this case it would be (Grade 1+Grade 2+ Grade 3)/3 Letter Grade = a letter grade for the student (use A >= 90, B >= 80, C >= 70, D >= 60, F
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
