Question: Declare variable scoreComments as a HashMap with Double key type and String value type, representing a test score and a teacher's comment on the score.
Declare variable scoreComments as a HashMap with Double key type and String value type, representing a test score and a teacher's comment on the score. Read integer dataCount from input. Then read dataCount keyvalue pairs from input and insert each into scoreComments. If the key already exists, do not replace the key's existing value with the new value.
Ex: If the input is:
ok nice satisfactory
then one possible output is:
Key: Value: ok
Key: Value: nice
Note: The order of the keys is not guaranteed in a HashMap.
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
