Question
Java: Create a text file, using Notepad, WordPad, TextEdit, or the PrintWriter class and call it RawData . Your RawData should contain at least 20
Java:
Create a text file, using Notepad, WordPad, TextEdit, or the PrintWriter class and call it RawData. Your RawData should contain at least 20 lines and each line should follow the following format:
For example:
Bob Smith 65 82 91
Nick M. Harris 55 78 89 67
.
.
Student full name is either first name and last name or first name, middle initial with a dot, and last name.
Courses final grades are out of 100, each student has at least one course, each course is a 3-credit hours course.
Write a Java program that produces an output file called Report.
Report should contain student name (only first and last name), number of credit hours taken, and the student average.
For example, using the data given in the above example, Report should be
Student Name Number of credits Student Average
------------------- ----------------------- ---------------------
Bob Smith 10 69.33
Nick Harris 19 62.25
.
.
.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started