Question: How can I add to the program to keep the averages for each student separately? for example- Bob 80,70,60 avg-70 Joe 90,95,92 avg- 92, etc
How can I add to the program to keep the averages for each student separately?
for example-
Bob 80,70,60 avg-70
Joe 90,95,92 avg- 92, etc 
"Student java 3 1e import java.util.HashMap; 2 import java.util.Scanner 3 import java.util.Set; 4 public class Student f String name; int score; 8e Student (String name, int score) this.name -name; 9 10 this.score score; 13 49 public static void main(String [] args)f scanner sc-new Scanner(System.in); 6 HashMapcstring, Studentmap new HashMap
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
