Java :Please write a program which reads students\' name and score data from con
ID: 3772187 • Letter: J
Question
Java :Please write a program which reads students' name and score data from console and build two arrrays of Strings and integers which contain the data.
The program is written with a main class, e.g. StudentCenter. The class is supposed to include main() method and additional methods for processing reading data, building arrays, and calculating the statistics from them.
Given data:
Kim 90
Eric 86
Stef 79
Joe 50
Lauren 98
John 83
Emily 89
Grace 92
Tim 85
Amy 87
Array:
String[] students = new String[count];
int[] scores = new int[count];
The result should be printed as follows:
/*** Statistics from student data ***/
Max. Grade = 98 (Lauren)
Min. Grade = 50 (Joe)
Avg. Grade = 83.9
Explanation / Answer
<code>
</code>
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.